From f9a00ad3ebdfd87573936ca69b94b749607a3bed Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Tue, 5 Nov 2024 14:39:23 -0800 Subject: [PATCH] add checkHomographyIsValid --- src/index.tsx | 6 ++++++ src/schema.gql | 1 + 2 files changed, 7 insertions(+) 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 -- 2.46.1