diff --git a/src/index.tsx b/src/index.tsx index 8406cf5..45a4ece 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2404,6 +2404,11 @@ export type Header = { value: Scalars["String"]["output"]; }; +export enum HomographyBackendGql { + Classic = "CLASSIC", + Tablenet = "TABLENET", +} + export type HomographyInfoGql = { __typename?: "HomographyInfoGQL"; crop: BoundingBoxGql; @@ -4278,6 +4283,7 @@ export type VideoMetadataInput = { framesPerSecond?: InputMaybe; /** @deprecated `game_type` is deprecated. Use `tags` instead. */ gameType?: InputMaybe; + homographyBackend?: InputMaybe; lastIntendedSegmentBound?: InputMaybe; pocketSize?: InputMaybe; private?: InputMaybe; diff --git a/src/schema.gql b/src/schema.gql index 63eae2f..c42221d 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -1901,6 +1901,7 @@ input VideoMetadataInput { clientUploadStatus: ClientUploadStatusEnum = null resolution: VideoResolution = null framesPerSecond: Float = null + homographyBackend: HomographyBackendGQL = null } input VideoResolution { @@ -1908,6 +1909,11 @@ input VideoResolution { height: Int! } +enum HomographyBackendGQL { + CLASSIC + TABLENET +} + type GetUploadLinkReturn { value: UploadLinkGetUploadLinkErrors! stream: UploadStreamGQL