Add id to homography info gql

This commit is contained in:
Ivan Malison 2024-11-07 16:29:33 -07:00
parent 63869cd7ca
commit ec58923c65
2 changed files with 2 additions and 0 deletions

View File

@ -1944,6 +1944,7 @@ export type HomographyInfoGql = {
crop: BoundingBoxGql;
destPoints: PocketPointsGql;
frameIndex: Scalars["Int"]["output"];
id: Scalars["Int"]["output"];
pockets: Array<BoundingBoxGql>;
sourcePoints: PocketPointsGql;
};

View File

@ -509,6 +509,7 @@ type VideoTagClass {
}
type HomographyInfoGQL {
id: Int!
frameIndex: Int!
crop: BoundingBoxGQL!
pockets: [BoundingBoxGQL!]!