Add HomographyBackendGQL enum and VideoMetadataInput.homographyBackend
All checks were successful
Tests / Tests (pull_request) Successful in 11s
All checks were successful
Tests / Tests (pull_request) Successful in 11s
Regenerated from backend Python: adds the HomographyBackendGQL enum (CLASSIC/TABLENET) and the optional homographyBackend field on VideoMetadataInput, for per-video homography backend selection. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -2404,6 +2404,11 @@ export type Header = {
|
|||||||
value: Scalars["String"]["output"];
|
value: Scalars["String"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export enum HomographyBackendGql {
|
||||||
|
Classic = "CLASSIC",
|
||||||
|
Tablenet = "TABLENET",
|
||||||
|
}
|
||||||
|
|
||||||
export type HomographyInfoGql = {
|
export type HomographyInfoGql = {
|
||||||
__typename?: "HomographyInfoGQL";
|
__typename?: "HomographyInfoGQL";
|
||||||
crop: BoundingBoxGql;
|
crop: BoundingBoxGql;
|
||||||
@@ -4278,6 +4283,7 @@ export type VideoMetadataInput = {
|
|||||||
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
/** @deprecated `game_type` is deprecated. Use `tags` instead. */
|
/** @deprecated `game_type` is deprecated. Use `tags` instead. */
|
||||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
homographyBackend?: InputMaybe<HomographyBackendGql>;
|
||||||
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
pocketSize?: InputMaybe<Scalars["Float"]["input"]>;
|
pocketSize?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
private?: InputMaybe<Scalars["Boolean"]["input"]>;
|
private?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||||
|
|||||||
@@ -1901,6 +1901,7 @@ input VideoMetadataInput {
|
|||||||
clientUploadStatus: ClientUploadStatusEnum = null
|
clientUploadStatus: ClientUploadStatusEnum = null
|
||||||
resolution: VideoResolution = null
|
resolution: VideoResolution = null
|
||||||
framesPerSecond: Float = null
|
framesPerSecond: Float = null
|
||||||
|
homographyBackend: HomographyBackendGQL = null
|
||||||
}
|
}
|
||||||
|
|
||||||
input VideoResolution {
|
input VideoResolution {
|
||||||
@@ -1908,6 +1909,11 @@ input VideoResolution {
|
|||||||
height: Int!
|
height: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum HomographyBackendGQL {
|
||||||
|
CLASSIC
|
||||||
|
TABLENET
|
||||||
|
}
|
||||||
|
|
||||||
type GetUploadLinkReturn {
|
type GetUploadLinkReturn {
|
||||||
value: UploadLinkGetUploadLinkErrors!
|
value: UploadLinkGetUploadLinkErrors!
|
||||||
stream: UploadStreamGQL
|
stream: UploadStreamGQL
|
||||||
|
|||||||
Reference in New Issue
Block a user