From 2c0f74f84036e2f85ef745571652e37fdcb9dd75 Mon Sep 17 00:00:00 2001 From: Loewy Date: Fri, 22 Nov 2024 10:59:23 -0800 Subject: [PATCH] id in homographyinfo fragment --- src/index.tsx | 5 +++++ src/operations/video.gql | 1 + 2 files changed, 6 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 356bfa1..6a1afe7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3670,6 +3670,7 @@ export type GetStreamMonitoringDetailsQuery = { elapsedTime?: number | null; currentHomography?: { __typename?: "HomographyInfoGQL"; + id: number; frameIndex: number; crop: { __typename?: "BoundingBoxGQL"; @@ -3885,6 +3886,7 @@ export type GetVideoQuery = { } | null; homographyHistory: Array<{ __typename?: "HomographyInfoGQL"; + id: number; frameIndex: number; crop: { __typename?: "BoundingBoxGQL"; @@ -4095,6 +4097,7 @@ export type FindPrerecordTableLayoutMutation = { __typename?: "Mutation"; findPrerecordTableLayout?: { __typename?: "HomographyInfoGQL"; + id: number; frameIndex: number; crop: { __typename?: "BoundingBoxGQL"; @@ -4124,6 +4127,7 @@ export type FindPrerecordTableLayoutMutation = { export type HomographyInfoFragment = { __typename?: "HomographyInfoGQL"; + id: number; frameIndex: number; crop: { __typename?: "BoundingBoxGQL"; @@ -4492,6 +4496,7 @@ export const VideoDurationDataFragmentDoc = gql` `; export const HomographyInfoFragmentDoc = gql` fragment HomographyInfo on HomographyInfoGQL { + id frameIndex crop { left diff --git a/src/operations/video.gql b/src/operations/video.gql index 965300b..9633148 100644 --- a/src/operations/video.gql +++ b/src/operations/video.gql @@ -222,6 +222,7 @@ mutation FindPrerecordTableLayout($b64Image: String!, $videoId: Int!) { } fragment HomographyInfo on HomographyInfoGQL { + id frameIndex crop { left