File tree Expand file tree Collapse file tree 2 files changed +16
-12
lines changed
Expand file tree Collapse file tree 2 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 11import { FeedApi } from './gen/feeds/FeedApi' ;
22
33export class StreamFeed extends FeedApi {
4- get fid ( ) {
4+ get feed ( ) {
55 return `${ this . group } :${ this . id } ` ;
66 }
77}
Original file line number Diff line number Diff line change @@ -5504,29 +5504,33 @@ export interface FirebaseConfigFields {
55045504export interface Flag {
55055505 created_at : Date ;
55065506
5507- created_by_automod : boolean ;
5507+ entity_id : string ;
5508+
5509+ entity_type : string ;
55085510
55095511 updated_at : Date ;
55105512
5511- approved_at ?: Date ;
5513+ result : Array < Record < string , any > > ;
55125514
5513- reason ?: string ;
5515+ entity_creator_id ?: string ;
55145516
5515- rejected_at ?: Date ;
5517+ is_streamed_content ?: boolean ;
55165518
5517- reviewed_at ?: Date ;
5519+ moderation_payload_hash ?: string ;
5520+
5521+ reason ?: string ;
55185522
5519- reviewed_by ?: string ;
5523+ review_queue_item_id ?: string ;
55205524
5521- target_message_id ?: string ;
5525+ type ?: string ;
55225526
5523- custom ?: Record < string , any > ;
5527+ labels ?: string [ ] ;
55245528
5525- details ?: FlagDetails ;
5529+ custom ?: Record < string , any > ;
55265530
5527- target_message ?: Message ;
5531+ moderation_payload ?: ModerationPayload ;
55285532
5529- target_user ?: User ;
5533+ review_queue_item ?: ReviewQueueItem ;
55305534
55315535 user ?: User ;
55325536}
You can’t perform that action at this time.
0 commit comments