Compare commits

...

1 Commits

Author SHA1 Message Date
d0440bd0ba add current homography to video gql
All checks were successful
Tests / Tests (pull_request) Successful in 8s
2024-09-04 16:59:54 -07:00
2 changed files with 2 additions and 0 deletions

View File

@ -1596,6 +1596,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

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