File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,13 @@ export type PostFlags = Partial<{
4343 promoteToPublic : number | null ;
4444 deletedBy : string ;
4545 vordr : boolean ;
46+ coverVideo : string ;
4647} > ;
4748
48- export type PostFlagsPublic = Pick < PostFlags , 'private' | 'promoteToPublic' > ;
49+ export type PostFlagsPublic = Pick <
50+ PostFlags ,
51+ 'private' | 'promoteToPublic' | 'coverVideo'
52+ > ;
4953
5054export type PostContentQuality = Partial < {
5155 is_ai_probability : number ;
Original file line number Diff line number Diff line change @@ -360,6 +360,11 @@ export const typeDefs = /* GraphQL */ `
360360 The unix timestamp (seconds) the post will be promoted to public to
361361 """
362362 promoteToPublic: Int @auth(requires: [MODERATOR])
363+
364+ """
365+ Cover video
366+ """
367+ coverVideo: String
363368 }
364369
365370 type UserPostFlagsPublic {
You can’t perform that action at this time.
0 commit comments