From d0440bd0bac6f9f56a820ec60920c6da66e7e1fe 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 932862d..920cbb2 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1596,6 +1596,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 333899b..f0db691 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -270,6 +270,7 @@ type VideoGQL { stream: UploadStreamGQL playlist: HLSPlaylistGQL tags: [VideoTag!]! + currentHomography: HomographyInfoGQL homographyHistory: [HomographyInfoGQL!]! currentProcessing: VideoProcessingGQL }