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