diff --git a/src/index.tsx b/src/index.tsx index 3c6fe88..4343458 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2063,6 +2063,7 @@ export type GetVideosQuery = { getVideos: Array<{ __typename?: "VideoGQL"; id: number; + framesPerSecond: number; stream?: { __typename?: "UploadStreamGQL"; id: string; @@ -3629,6 +3630,7 @@ export const GetVideosDocument = gql` query GetVideos($videoIds: [Int!]!) { getVideos(videoIds: $videoIds) { id + framesPerSecond stream { id streamSegmentType diff --git a/src/operations/video.gql b/src/operations/video.gql index d47ab35..3b786ce 100644 --- a/src/operations/video.gql +++ b/src/operations/video.gql @@ -118,6 +118,7 @@ query GetVideoDetails($videoId: Int!) { query GetVideos($videoIds: [Int!]!) { getVideos(videoIds: $videoIds) { id + framesPerSecond stream { id streamSegmentType