diff --git a/src/index.tsx b/src/index.tsx index cad02e6..cd67860 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2191,10 +2191,6 @@ export type GetUploadLinkMutation = { value: string; } | null>; }; - stream?: { - __typename?: "UploadStreamGQL"; - uploadCompletionCursor: number; - } | null; }; }; @@ -4144,9 +4140,6 @@ export const GetUploadLinkDocument = gql` } } } - stream { - uploadCompletionCursor - } } } `; diff --git a/src/operations/video_upload.gql b/src/operations/video_upload.gql index a7b03e4..9dc794a 100644 --- a/src/operations/video_upload.gql +++ b/src/operations/video_upload.gql @@ -34,9 +34,6 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) { } } } - stream { - uploadCompletionCursor - } } }