@stream-io/node-sdk 0.7.45 → 0.7.46
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.
|
@@ -354,6 +354,7 @@ export interface ActivityResponse {
|
|
|
354
354
|
notification_context?: NotificationContext;
|
|
355
355
|
parent?: ActivityResponse;
|
|
356
356
|
poll?: PollResponseData;
|
|
357
|
+
score_vars?: Record<string, any>;
|
|
357
358
|
}
|
|
358
359
|
export interface ActivityRestoredEvent {
|
|
359
360
|
created_at: Date;
|
|
@@ -3229,6 +3230,7 @@ export interface EnrichedReaction {
|
|
|
3229
3230
|
}
|
|
3230
3231
|
export interface EnrichmentOptions {
|
|
3231
3232
|
enrich_own_followings?: boolean;
|
|
3233
|
+
include_score_vars?: boolean;
|
|
3232
3234
|
skip_activity?: boolean;
|
|
3233
3235
|
skip_activity_collections?: boolean;
|
|
3234
3236
|
skip_activity_comments?: boolean;
|
package/package.json
CHANGED
package/src/gen/models/index.ts
CHANGED
|
@@ -636,6 +636,8 @@ export interface ActivityResponse {
|
|
|
636
636
|
parent?: ActivityResponse;
|
|
637
637
|
|
|
638
638
|
poll?: PollResponseData;
|
|
639
|
+
|
|
640
|
+
score_vars?: Record<string, any>;
|
|
639
641
|
}
|
|
640
642
|
|
|
641
643
|
export interface ActivityRestoredEvent {
|
|
@@ -5688,6 +5690,8 @@ export interface EnrichedReaction {
|
|
|
5688
5690
|
export interface EnrichmentOptions {
|
|
5689
5691
|
enrich_own_followings?: boolean;
|
|
5690
5692
|
|
|
5693
|
+
include_score_vars?: boolean;
|
|
5694
|
+
|
|
5691
5695
|
skip_activity?: boolean;
|
|
5692
5696
|
|
|
5693
5697
|
skip_activity_collections?: boolean;
|