@stream-io/node-sdk 0.7.22 → 0.7.24
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;
|
|
@@ -356,6 +357,7 @@ export interface ActivitySelectorConfigResponse {
|
|
|
356
357
|
min_popularity?: number;
|
|
357
358
|
sort?: SortParamRequest[];
|
|
358
359
|
filter?: Record<string, any>;
|
|
360
|
+
params?: Record<string, any>;
|
|
359
361
|
}
|
|
360
362
|
export interface ActivityUnpinnedEvent {
|
|
361
363
|
created_at: Date;
|
package/package.json
CHANGED
package/src/gen/models/index.ts
CHANGED
|
@@ -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 {
|
|
@@ -644,6 +647,8 @@ export interface ActivitySelectorConfigResponse {
|
|
|
644
647
|
sort?: SortParamRequest[];
|
|
645
648
|
|
|
646
649
|
filter?: Record<string, any>;
|
|
650
|
+
|
|
651
|
+
params?: Record<string, any>;
|
|
647
652
|
}
|
|
648
653
|
|
|
649
654
|
export interface ActivityUnpinnedEvent {
|