@stream-io/feeds-client 1.8.0 → 1.9.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/feeds-client",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/es/index.mjs",
@@ -3830,6 +3830,11 @@ export interface EnrichmentOptions {
3830
3830
  */
3831
3831
  enrich_own_followings?: boolean;
3832
3832
 
3833
+ /**
3834
+ * Default: false. When true, includes the top-level flat 'activities' array in responses for aggregated feeds. By default, aggregated feeds only return 'aggregated_activities'.
3835
+ */
3836
+ include_flat_activities?: boolean;
3837
+
3833
3838
  /**
3834
3839
  * Default: false. When true, includes score_vars in activity responses containing variable values used at ranking time.
3835
3840
  */
@@ -6877,6 +6882,9 @@ export interface PushPreferencesResponse {
6877
6882
  export interface QueryActivitiesRequest {
6878
6883
  enrich_own_fields?: boolean;
6879
6884
 
6885
+ /**
6886
+ * When true, include soft-deleted activities in the result.
6887
+ */
6880
6888
  include_soft_deleted_activities?: boolean;
6881
6889
 
6882
6890
  limit?: number;
@@ -7459,6 +7467,9 @@ export interface QueryReviewQueueResponse {
7459
7467
  }
7460
7468
 
7461
7469
  export interface QueryUsersPayload {
7470
+ /**
7471
+ * Filter conditions to apply to the query
7472
+ */
7462
7473
  filter_conditions: Record<string, any>;
7463
7474
 
7464
7475
  include_deactivated_users?: boolean;
@@ -7469,6 +7480,9 @@ export interface QueryUsersPayload {
7469
7480
 
7470
7481
  presence?: boolean;
7471
7482
 
7483
+ /**
7484
+ * Array of sort parameters
7485
+ */
7472
7486
  sort?: SortParamRequest[];
7473
7487
  }
7474
7488