add current homography to video gql
All checks were successful
Tests / Tests (pull_request) Successful in 6s

This commit is contained in:
Loewy 2024-09-04 16:59:54 -07:00 committed by loewy
parent 267486774c
commit 72b338bfc2
2 changed files with 2 additions and 0 deletions

View File

@ -1609,6 +1609,7 @@ export type VideoGql = {
__typename?: "VideoGQL";
averageTimeBetweenShots?: Maybe<Scalars["Float"]["output"]>;
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
currentHomography?: Maybe<HomographyInfoGql>;
currentProcessing?: Maybe<VideoProcessingGql>;
elapsedTime?: Maybe<Scalars["Float"]["output"]>;
endTime?: Maybe<Scalars["DateTime"]["output"]>;

View File

@ -280,6 +280,7 @@ type VideoGQL {
stream: UploadStreamGQL
playlist: HLSPlaylistGQL
tags: [VideoTag!]!
currentHomography: HomographyInfoGQL
homographyHistory: [HomographyInfoGQL!]!
currentProcessing: VideoProcessingGQL
}