diff --git a/src/index.tsx b/src/index.tsx index 8fdf86e..811f0c4 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -342,7 +342,7 @@ export type VideoGql = { __typename?: 'VideoGQL'; averageTimeBetweenShots?: Maybe; createdAt: Scalars['DateTime']['output']; - elapsedTime: Scalars['Float']['output']; + elapsedTime?: Maybe; endTime: Scalars['DateTime']['output']; framesPerSecond: Scalars['Int']['output']; id: Scalars['Int']['output']; @@ -352,7 +352,6 @@ export type VideoGql = { shots: Array; startTime: Scalars['DateTime']['output']; stream?: Maybe; - totalFrames: Scalars['Int']['output']; totalShots: Scalars['Int']['output']; totalShotsMade: Scalars['Int']['output']; updatedAt: Scalars['DateTime']['output']; diff --git a/src/schema.gql b/src/schema.gql index 2537d4c..81d8a35 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -77,9 +77,8 @@ type VideoGQL { shots: [ShotGQL!]! startTime: DateTime! endTime: DateTime! - elapsedTime: Float! + elapsedTime: Float framesPerSecond: Int! - totalFrames: Int! stream: UploadStreamGQL }