Merge pull request 'Add current homography to VideoGQL' (#49) from loewy/add-current-homography-to-get-video into master

Reviewed-on: #49
This commit is contained in:
loewy 2024-09-04 18:28:24 -06:00
commit 15b307a88f
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
}