From 72b451d32267a1b8bf801e8150e0905e5b50e165 Mon Sep 17 00:00:00 2001 From: Loewy Date: Fri, 16 Aug 2024 18:47:08 -0700 Subject: [PATCH] remove stream from getUploadLink --- src/index.tsx | 7 ------- src/operations/video_upload.gql | 3 --- 2 files changed, 10 deletions(-) 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 - } } }