Merge branch 'master' into mk/spin-type
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
countablecloud 2024-08-28 17:27:58 -06:00
commit f306cc6c16
2 changed files with 3 additions and 0 deletions

View File

@ -2063,6 +2063,7 @@ export type GetVideosQuery = {
getVideos: Array<{ getVideos: Array<{
__typename?: "VideoGQL"; __typename?: "VideoGQL";
id: number; id: number;
framesPerSecond: number;
stream?: { stream?: {
__typename?: "UploadStreamGQL"; __typename?: "UploadStreamGQL";
id: string; id: string;
@ -3629,6 +3630,7 @@ export const GetVideosDocument = gql`
query GetVideos($videoIds: [Int!]!) { query GetVideos($videoIds: [Int!]!) {
getVideos(videoIds: $videoIds) { getVideos(videoIds: $videoIds) {
id id
framesPerSecond
stream { stream {
id id
streamSegmentType streamSegmentType

View File

@ -118,6 +118,7 @@ query GetVideoDetails($videoId: Int!) {
query GetVideos($videoIds: [Int!]!) { query GetVideos($videoIds: [Int!]!) {
getVideos(videoIds: $videoIds) { getVideos(videoIds: $videoIds) {
id id
framesPerSecond
stream { stream {
id id
streamSegmentType streamSegmentType