From 1ce426794593d890433cf181922821b570490727 Mon Sep 17 00:00:00 2001 From: Kat Huang Date: Tue, 23 Apr 2024 20:25:27 -0600 Subject: [PATCH] Frames per second is float --- src/index.tsx | 2 +- src/schema.gql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 221f848..47871e4 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -407,7 +407,7 @@ export type VideoGql = { createdAt?: Maybe; elapsedTime?: Maybe; endTime?: Maybe; - framesPerSecond: Scalars["Int"]["output"]; + framesPerSecond: Scalars["Float"]["output"]; homographyHistory: Array; id: Scalars["Int"]["output"]; makePercentage: Scalars["Float"]["output"]; diff --git a/src/schema.gql b/src/schema.gql index 050270d..eaccd7f 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -206,7 +206,7 @@ type VideoGQL { startTime: DateTime endTime: DateTime elapsedTime: Float - framesPerSecond: Int! + framesPerSecond: Float! stream: UploadStreamGQL playlist: HLSPlaylistGQL tags: [VideoTag!]!