From 6bcf9a2487534c55d9938eaf2822f3615d8b82ba Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 9 Jun 2026 16:31:50 -0700 Subject: [PATCH] Add upload stream detail fields --- src/index.tsx | 6 ++++++ src/operations/video_upload.gql | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 593cf0d..1577954 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6896,8 +6896,10 @@ export type UploadStreamWithDetailsFragment = { startTime?: any | null; stream?: { __typename?: "UploadStreamGQL"; + id: string; isCompleted: boolean; lastIntendedSegmentBound?: number | null; + streamSegmentType: StreamSegmentTypeEnum; uploadCompletionCursor: number; uploadsCompleted: number; } | null; @@ -6920,8 +6922,10 @@ export type GetUploadStreamsWithDetailsQuery = { startTime?: any | null; stream?: { __typename?: "UploadStreamGQL"; + id: string; isCompleted: boolean; lastIntendedSegmentBound?: number | null; + streamSegmentType: StreamSegmentTypeEnum; uploadCompletionCursor: number; uploadsCompleted: number; } | null; @@ -7309,8 +7313,10 @@ export const UploadStreamWithDetailsFragmentDoc = gql` name startTime stream { + id isCompleted lastIntendedSegmentBound + streamSegmentType uploadCompletionCursor uploadsCompleted } diff --git a/src/operations/video_upload.gql b/src/operations/video_upload.gql index 18baff0..f34901b 100644 --- a/src/operations/video_upload.gql +++ b/src/operations/video_upload.gql @@ -113,8 +113,10 @@ fragment UploadStreamWithDetails on VideoGQL { name startTime stream { + id isCompleted lastIntendedSegmentBound + streamSegmentType uploadCompletionCursor uploadsCompleted }