From 8c191bdb90fdb88356d3c49c96c297bd8abc2953 Mon Sep 17 00:00:00 2001 From: Loewy Date: Thu, 24 Oct 2024 11:27:40 -0700 Subject: [PATCH] Remove error default from operation --- src/index.tsx | 6 ++++-- src/operations/shots.gql | 1 - src/operations/video.gql | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index ef0be4b..4b766f9 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2777,7 +2777,6 @@ export type UpdateShotAnnotationsMutation = { __typename?: "ShotAnnotationGQL"; shotId: number; notes: string; - errorDefault: boolean; type: { __typename?: "ShotAnnotationTypeGQL"; id: number; @@ -3196,6 +3195,7 @@ export type GetStreamMonitoringDetailsQuery = { } | null; stream?: { __typename?: "UploadStreamGQL"; + id: string; linksRequested: number; uploadsCompleted: number; segmentProcessingCursor: number; @@ -3409,6 +3409,7 @@ export type GetVideoQuery = { }>; stream?: { __typename?: "UploadStreamGQL"; + id: string; streamSegmentType: StreamSegmentTypeEnum; segments: Array<{ __typename?: "UploadSegmentGQL"; @@ -4378,7 +4379,6 @@ export const UpdateShotAnnotationsDocument = gql` name } notes - errorDefault } } error { @@ -5326,6 +5326,7 @@ export const GetStreamMonitoringDetailsDocument = gql` } } stream { + id linksRequested uploadsCompleted segmentProcessingCursor @@ -5833,6 +5834,7 @@ export const GetVideoDocument = gql` } } stream { + id streamSegmentType segments { segmentIndex diff --git a/src/operations/shots.gql b/src/operations/shots.gql index 9aa6e65..0648db7 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -31,7 +31,6 @@ mutation UpdateShotAnnotations( name } notes - errorDefault } } error { diff --git a/src/operations/video.gql b/src/operations/video.gql index 724d791..64549e4 100644 --- a/src/operations/video.gql +++ b/src/operations/video.gql @@ -45,6 +45,7 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) { } } stream { + id linksRequested uploadsCompleted segmentProcessingCursor @@ -194,6 +195,7 @@ query GetVideo($videoId: Int!) { } } stream { + id streamSegmentType segments { segmentIndex