@stream-io/node-sdk 0.7.22 → 0.7.23

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.
@@ -342,12 +342,13 @@ export interface ActivityResponse {
342
342
  poll?: PollResponseData;
343
343
  }
344
344
  export interface ActivitySelectorConfig {
345
- type: 'popular' | 'proximity' | 'following' | 'current_feed' | 'query' | 'interest';
345
+ type: 'popular' | 'proximity' | 'following' | 'current_feed' | 'query' | 'interest' | 'follow_suggestion';
346
346
  cutoff_time?: string;
347
347
  cutoff_window?: string;
348
348
  min_popularity?: number;
349
349
  sort?: SortParamRequest[];
350
350
  filter?: Record<string, any>;
351
+ params?: Record<string, any>;
351
352
  }
352
353
  export interface ActivitySelectorConfigResponse {
353
354
  type: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/node-sdk",
3
- "version": "0.7.22",
3
+ "version": "0.7.23",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -619,7 +619,8 @@ export interface ActivitySelectorConfig {
619
619
  | 'following'
620
620
  | 'current_feed'
621
621
  | 'query'
622
- | 'interest';
622
+ | 'interest'
623
+ | 'follow_suggestion';
623
624
 
624
625
  cutoff_time?: string;
625
626
 
@@ -630,6 +631,8 @@ export interface ActivitySelectorConfig {
630
631
  sort?: SortParamRequest[];
631
632
 
632
633
  filter?: Record<string, any>;
634
+
635
+ params?: Record<string, any>;
633
636
  }
634
637
 
635
638
  export interface ActivitySelectorConfigResponse {