@@ -399,7 +399,7 @@ export interface ActivityRemovedFromFeedEvent {
399399export interface ActivityRequest {
400400 type : string ;
401401
402- feed_ids : string [ ] ;
402+ fids : string [ ] ;
403403
404404 expires_at ?: string ;
405405
@@ -443,6 +443,8 @@ export interface ActivityResponse {
443443
444444 popularity : number ;
445445
446+ reaction_count : number ;
447+
446448 score : number ;
447449
448450 share_count : number ;
@@ -457,7 +459,7 @@ export interface ActivityResponse {
457459
458460 comments : CommentResponse [ ] ;
459461
460- feed_ids : string [ ] ;
462+ feeds : string [ ] ;
461463
462464 filter_tags : string [ ] ;
463465
@@ -547,7 +549,7 @@ export interface ActivityUpdatedEvent {
547549export interface AddActivityRequest {
548550 type : string ;
549551
550- feed_ids : string [ ] ;
552+ fids : string [ ] ;
551553
552554 expires_at ?: string ;
553555
@@ -1826,6 +1828,8 @@ export interface CallParticipant {
18261828
18271829 role : string ;
18281830
1831+ role : string ;
1832+
18291833 user_session_id : string ;
18301834
18311835 custom : Record < string , any > ;
@@ -5138,7 +5142,7 @@ export interface FeedResponse {
51385142
51395143 description : string ;
51405144
5141- feed_id : string ;
5145+ fid : string ;
51425146
51435147 follower_count : number ;
51445148
@@ -5284,33 +5288,29 @@ export interface FirebaseConfigFields {
52845288export interface Flag {
52855289 created_at : Date ;
52865290
5287- entity_id : string ;
5288-
5289- entity_type : string ;
5291+ created_by_automod : boolean ;
52905292
52915293 updated_at : Date ;
52925294
5293- result : Array < Record < string , any > > ;
5294-
5295- entity_creator_id ?: string ;
5296-
5297- is_streamed_content ?: boolean ;
5298-
5299- moderation_payload_hash ?: string ;
5295+ approved_at ?: Date ;
53005296
53015297 reason ?: string ;
53025298
5303- review_queue_item_id ?: string ;
5299+ rejected_at ?: Date ;
53045300
5305- type ?: string ;
5301+ reviewed_at ?: Date ;
53065302
5307- labels ?: string [ ] ;
5303+ reviewed_by ?: string ;
5304+
5305+ target_message_id ?: string ;
53085306
53095307 custom ?: Record < string , any > ;
53105308
5311- moderation_payload ?: ModerationPayload ;
5309+ details ?: FlagDetails ;
53125310
5313- review_queue_item ?: ReviewQueueItem ;
5311+ target_message ?: Message ;
5312+
5313+ target_user ?: User ;
53145314
53155315 user ?: User ;
53165316}
@@ -7690,7 +7690,7 @@ export interface PinActivityResponse {
76907690
76917691 duration : string ;
76927692
7693- feed_id : string ;
7693+ fid : string ;
76947694
76957695 user_id : string ;
76967696
@@ -10843,7 +10843,7 @@ export interface UnmuteResponse {
1084310843export interface UnpinActivityResponse {
1084410844 duration : string ;
1084510845
10846- feed_id : string ;
10846+ fid : string ;
1084710847
1084810848 user_id : string ;
1084910849
0 commit comments