@stream-io/node-sdk 0.7.7 → 0.7.8
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.
|
@@ -6088,6 +6088,7 @@ export interface StoriesFeedUpdatedEvent {
|
|
|
6088
6088
|
type: string;
|
|
6089
6089
|
feed_visibility?: string;
|
|
6090
6090
|
received_at?: Date;
|
|
6091
|
+
activities?: ActivityResponse[];
|
|
6091
6092
|
aggregated_activities?: AggregatedActivityResponse[];
|
|
6092
6093
|
user?: UserResponseCommonFields;
|
|
6093
6094
|
}
|
package/package.json
CHANGED
|
@@ -3873,6 +3873,8 @@ decoders.StoriesFeedUpdatedEvent = (input?: Record<string, any>) => {
|
|
|
3873
3873
|
|
|
3874
3874
|
received_at: { type: 'DatetimeType', isSingle: true },
|
|
3875
3875
|
|
|
3876
|
+
activities: { type: 'ActivityResponse', isSingle: false },
|
|
3877
|
+
|
|
3876
3878
|
aggregated_activities: {
|
|
3877
3879
|
type: 'AggregatedActivityResponse',
|
|
3878
3880
|
isSingle: false,
|
package/src/gen/models/index.ts
CHANGED
|
@@ -10645,6 +10645,8 @@ export interface StoriesFeedUpdatedEvent {
|
|
|
10645
10645
|
|
|
10646
10646
|
received_at?: Date;
|
|
10647
10647
|
|
|
10648
|
+
activities?: ActivityResponse[];
|
|
10649
|
+
|
|
10648
10650
|
aggregated_activities?: AggregatedActivityResponse[];
|
|
10649
10651
|
|
|
10650
10652
|
user?: UserResponseCommonFields;
|