diff --git a/src/index.tsx b/src/index.tsx index bee8ed7..bd0b527 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1985,7 +1985,7 @@ export type GetStreamMonitoringDetailsQuery = { totalShots: number; makePercentage: number; elapsedTime?: number | null; - homographyHistory: Array<{ + currentHomography?: { __typename?: "HomographyInfoGQL"; crop: { __typename?: "BoundingBoxGQL"; @@ -2010,7 +2010,7 @@ export type GetStreamMonitoringDetailsQuery = { bottomSide: { __typename?: "IntPoint2D"; x: number; y: number }; bottomRight: { __typename?: "IntPoint2D"; x: number; y: number }; }; - }>; + } | null; stream?: { __typename?: "UploadStreamGQL"; linksRequested: number; @@ -3406,7 +3406,7 @@ export const GetStreamMonitoringDetailsDocument = gql` totalShots makePercentage elapsedTime - homographyHistory { + currentHomography { crop { left top diff --git a/src/operations/video.gql b/src/operations/video.gql index 3b786ce..613857a 100644 --- a/src/operations/video.gql +++ b/src/operations/video.gql @@ -4,7 +4,7 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) { totalShots makePercentage elapsedTime - homographyHistory { + currentHomography { crop { left top