diff --git a/src/index.tsx b/src/index.tsx index d3844df..e4fec18 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -9198,6 +9198,7 @@ export type GetUploadLinkMutation = { }; stream?: { __typename?: "UploadStreamGQL"; + id: string; uploadCompletionCursor: number; } | null; }; @@ -9296,6 +9297,7 @@ export type UploadStreamWithDetailsFragment = { startTime?: any | null; stream?: { __typename?: "UploadStreamGQL"; + id: string; isCompleted: boolean; lastIntendedSegmentBound?: number | null; uploadCompletionCursor: number; @@ -9320,6 +9322,7 @@ export type GetUploadStreamsWithDetailsQuery = { startTime?: any | null; stream?: { __typename?: "UploadStreamGQL"; + id: string; isCompleted: boolean; lastIntendedSegmentBound?: number | null; uploadCompletionCursor: number; @@ -9896,6 +9899,7 @@ export const UploadStreamWithDetailsFragmentDoc = gql` name startTime stream { + id isCompleted lastIntendedSegmentBound uploadCompletionCursor @@ -19672,6 +19676,7 @@ export const GetUploadLinkDocument = gql` } } stream { + id uploadCompletionCursor } } diff --git a/src/operations/video_upload.gql b/src/operations/video_upload.gql index c35a9c2..b21fc7f 100644 --- a/src/operations/video_upload.gql +++ b/src/operations/video_upload.gql @@ -48,6 +48,7 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) { } } stream { + id uploadCompletionCursor } } @@ -127,6 +128,7 @@ fragment UploadStreamWithDetails on VideoGQL { name startTime stream { + id isCompleted lastIntendedSegmentBound uploadCompletionCursor