Add last intended segment bound in fragment for VideoFeed stream obj #154

Merged
loewy merged 1 commits from loewy/add-last-intended-segment-bound-to-stream into master 2025-01-16 23:03:43 -07:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 84192d1387 - Show all commits

View File

@ -3045,6 +3045,7 @@ export type GetFeedQuery = {
stream?: {
__typename?: "UploadStreamGQL";
id: string;
lastIntendedSegmentBound?: number | null;
isCompleted: boolean;
} | null;
tags: Array<{
@ -3098,6 +3099,7 @@ export type VideoCardFieldsFragment = {
stream?: {
__typename?: "UploadStreamGQL";
id: string;
lastIntendedSegmentBound?: number | null;
isCompleted: boolean;
} | null;
tags: Array<{
@ -3154,6 +3156,7 @@ export type GetVideoFeedQuery = {
stream?: {
__typename?: "UploadStreamGQL";
id: string;
lastIntendedSegmentBound?: number | null;
isCompleted: boolean;
} | null;
tags: Array<{
@ -4734,6 +4737,7 @@ export const VideoCardFieldsFragmentDoc = gql`
screenshotUri
stream {
id
lastIntendedSegmentBound
isCompleted
}
tableSize

View File

@ -36,6 +36,7 @@ fragment VideoCardFields on VideoGQL {
screenshotUri
stream {
id
lastIntendedSegmentBound
isCompleted
}
tableSize