Compare commits

..

No commits in common. "db4a6315cdc7c7bde41b89f06d3001d6cba05b95" and "a030a0ef16b2cb4af40175c07835f64c64abd537" have entirely different histories.

2 changed files with 10 additions and 13 deletions

View File

@ -2044,10 +2044,13 @@ export type GetVideosQuery = {
getVideos: Array<{
__typename?: "VideoGQL";
id: number;
playlist?: {
__typename?: "HLSPlaylistGQL";
segmentDurations: Array<number>;
} | null;
stream?: {
__typename?: "UploadStreamGQL";
id: string;
streamSegmentType: StreamSegmentTypeEnum;
segments: Array<{
__typename?: "UploadSegmentGQL";
uploaded: boolean;
@ -2057,10 +2060,6 @@ export type GetVideosQuery = {
framesPerSecond?: number | null;
}>;
} | null;
playlist?: {
__typename?: "HLSPlaylistGQL";
segmentDurations: Array<number>;
} | null;
}>;
};
@ -3602,9 +3601,11 @@ export const GetVideosDocument = gql`
query GetVideos($videoIds: [Int!]!) {
getVideos(videoIds: $videoIds) {
id
playlist {
segmentDurations
}
stream {
id
streamSegmentType
segments {
uploaded
valid
@ -3613,9 +3614,6 @@ export const GetVideosDocument = gql`
framesPerSecond
}
}
playlist {
segmentDurations
}
}
}
`;

View File

@ -118,9 +118,11 @@ query GetVideoDetails($videoId: Int!) {
query GetVideos($videoIds: [Int!]!) {
getVideos(videoIds: $videoIds) {
id
playlist {
segmentDurations
}
stream {
id
streamSegmentType
segments {
uploaded
valid
@ -129,9 +131,6 @@ query GetVideos($videoIds: [Int!]!) {
framesPerSecond
}
}
playlist {
segmentDurations
}
}
}