diff --git a/src/index.tsx b/src/index.tsx index 49ac198..a1b647f 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2259,6 +2259,7 @@ export type QueryGetBucketSetArgs = { export type QueryGetFeedVideosArgs = { after?: InputMaybe; + allVideos?: Scalars["Boolean"]["input"]; filters?: InputMaybe; includeCallersVideos?: InputMaybe; limit?: Scalars["Int"]["input"]; diff --git a/src/schema.gql b/src/schema.gql index bb06055..80c9917 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -68,6 +68,7 @@ type Query { after: String = null includeCallersVideos: Boolean = true filters: VideoFilterInput = null + allVideos: Boolean! = false ): VideoHistoryGQL! }