@stream-io/node-sdk 0.6.5 → 0.6.6

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.
@@ -453,6 +453,7 @@ export interface AggregatedActivityResponse {
453
453
  score: number;
454
454
  updated_at: Date;
455
455
  user_count: number;
456
+ user_count_truncated: boolean;
456
457
  activities: ActivityResponse[];
457
458
  }
458
459
  export interface AggregationConfig {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/node-sdk",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -805,6 +805,8 @@ export interface AggregatedActivityResponse {
805
805
 
806
806
  user_count: number;
807
807
 
808
+ user_count_truncated: boolean;
809
+
808
810
  activities: ActivityResponse[];
809
811
  }
810
812