Merge pull request 'Add current homography operation' (#52) from loewy/add-current-homography-in-operation into master

Reviewed-on: #52
Reviewed-by: Ivan Malison <ivanmalison@gmail.com>
This commit is contained in:
loewy 2024-09-06 19:04:35 -06:00
commit b60cbe3854
2 changed files with 4 additions and 4 deletions

View File

@ -2054,7 +2054,7 @@ export type GetStreamMonitoringDetailsQuery = {
totalShots: number;
makePercentage: number;
elapsedTime?: number | null;
homographyHistory: Array<{
currentHomography?: {
__typename?: "HomographyInfoGQL";
crop: {
__typename?: "BoundingBoxGQL";
@ -2079,7 +2079,7 @@ export type GetStreamMonitoringDetailsQuery = {
bottomSide: { __typename?: "IntPoint2D"; x: number; y: number };
bottomRight: { __typename?: "IntPoint2D"; x: number; y: number };
};
}>;
} | null;
stream?: {
__typename?: "UploadStreamGQL";
linksRequested: number;
@ -3686,7 +3686,7 @@ export const GetStreamMonitoringDetailsDocument = gql`
totalShots
makePercentage
elapsedTime
homographyHistory {
currentHomography {
crop {
left
top

View File

@ -4,7 +4,7 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
totalShots
makePercentage
elapsedTime
homographyHistory {
currentHomography {
crop {
left
top