From 72b338bfc216501386e4002d45ea17f34a9ecebc Mon Sep 17 00:00:00 2001 From: Loewy Date: Wed, 4 Sep 2024 16:59:54 -0700 Subject: [PATCH] add current homography to video gql --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index baa42a1..bee8ed7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1609,6 +1609,7 @@ export type VideoGql = { __typename?: "VideoGQL"; averageTimeBetweenShots?: Maybe; createdAt?: Maybe; + currentHomography?: Maybe; currentProcessing?: Maybe; elapsedTime?: Maybe; endTime?: Maybe; diff --git a/src/schema.gql b/src/schema.gql index 20c0989..1feb613 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -280,6 +280,7 @@ type VideoGQL { stream: UploadStreamGQL playlist: HLSPlaylistGQL tags: [VideoTag!]! + currentHomography: HomographyInfoGQL homographyHistory: [HomographyInfoGQL!]! currentProcessing: VideoProcessingGQL }