From 5085c9af908286a40f701547252b35c7413c908c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 9 Aug 2024 00:59:38 -0600 Subject: [PATCH] Add waitFor --- src/index.tsx | 5 +++++ src/schema.gql | 1 + 2 files changed, 6 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 2441fa8..564245d 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1194,6 +1194,7 @@ export type Query = { getVideo: VideoGql; getVideoMakePercentageIntervals: Array; getVideos: Array; + waitFor: Scalars["Float"]["output"]; }; export type QueryGetAggregatedShotMetricsArgs = { @@ -1244,6 +1245,10 @@ export type QueryGetVideosArgs = { videoIds: Array; }; +export type QueryWaitForArgs = { + duration: Scalars["Float"]["input"]; +}; + export type RangeFilter = { greaterThanEqualTo?: InputMaybe; includeOnNone?: Scalars["Boolean"]["input"]; diff --git a/src/schema.gql b/src/schema.gql index d5b6dc6..8893191 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -4,6 +4,7 @@ type Query { ): [AggregateResultGQL!]! getBucketSet(keyName: String!): BucketSetGQL getDeployedConfig: DeployedConfigGQL! + waitFor(duration: Float!): Float! getVideoMakePercentageIntervals( videoId: ID! intervalDuration: Int! = 300