@@ -577,6 +577,8 @@ export interface ActivityResponse {
577577
578578 hidden ?: boolean ;
579579
580+ is_watched ?: boolean ;
581+
580582 text ?: string ;
581583
582584 visibility_tag ?: string ;
@@ -811,6 +813,8 @@ export interface AggregatedActivityResponse {
811813
812814 user_count_truncated : boolean ;
813815
816+ is_watched ?: boolean ;
817+
814818 activities : ActivityResponse [ ] ;
815819}
816820
@@ -4150,6 +4154,8 @@ export interface CreateFeedGroupRequest {
41504154 push_notification ?: PushNotificationConfig ;
41514155
41524156 ranking ?: RankingConfig ;
4157+
4158+ stories ?: StoriesConfig ;
41534159}
41544160
41554161export interface CreateFeedGroupResponse {
@@ -10624,6 +10630,24 @@ export interface SRTIngress {
1062410630 address : string ;
1062510631}
1062610632
10633+ export interface StoriesFeedUpdatedEvent {
10634+ created_at : Date ;
10635+
10636+ fid : string ;
10637+
10638+ custom : Record < string , any > ;
10639+
10640+ type : string ;
10641+
10642+ feed_visibility ?: string ;
10643+
10644+ received_at ?: Date ;
10645+
10646+ aggregated_activities ?: AggregatedActivityResponse [ ] ;
10647+
10648+ user ?: UserResponseCommonFields ;
10649+ }
10650+
1062710651export interface STTEgressConfig {
1062810652 closed_captions_enabled ?: boolean ;
1062910653
@@ -11292,6 +11316,8 @@ export interface StoriesConfig {
1129211316 expiration_behaviour ?: string ;
1129311317
1129411318 skip_watched ?: boolean ;
11319+
11320+ track_watched ?: boolean ;
1129511321}
1129611322
1129711323export interface SubmitActionRequest {
@@ -13714,6 +13740,7 @@ export type WebhookEvent =
1371413740 | ( { type : 'feeds.follow.deleted' } & FollowDeletedEvent )
1371513741 | ( { type : 'feeds.follow.updated' } & FollowUpdatedEvent )
1371613742 | ( { type : 'feeds.notification_feed.updated' } & NotificationFeedUpdatedEvent )
13743+ | ( { type : 'feeds.stories_feed.updated' } & StoriesFeedUpdatedEvent )
1371713744 | ( { type : 'flag.updated' } & FlagUpdatedEvent )
1371813745 | ( { type : 'member.added' } & MemberAddedEvent )
1371913746 | ( { type : 'member.removed' } & MemberRemovedEvent )
0 commit comments