diff --git a/src/index.tsx b/src/index.tsx index 091e5d1..596a0cd 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2163,6 +2163,7 @@ export enum ProcessingStatusEnum { export type Query = { __typename?: "Query"; + checkHomographyIsValid?: Maybe; doesUsernameExist: Scalars["Boolean"]["output"]; getAggregatedShotMetrics: Array; getBucketSet?: Maybe; @@ -2187,6 +2188,11 @@ export type Query = { waitFor: Scalars["Float"]["output"]; }; +export type QueryCheckHomographyIsValidArgs = { + b64Image: Scalars["String"]["input"]; + videoId: Scalars["Int"]["input"]; +}; + export type QueryDoesUsernameExistArgs = { candidateUsername: Scalars["String"]["input"]; }; diff --git a/src/schema.gql b/src/schema.gql index 35e4565..f26d125 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -56,6 +56,7 @@ type Query { getUserTags: [TagGQL!]! getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL! getVideos(videoIds: [Int!]!): [VideoGQL!]! + checkHomographyIsValid(b64Image: String!, videoId: Int!): HomographyInfoGQL getFeedVideos( limit: Int! = 5 after: String = null