From f9d6377fe49f635e7b7f87bedb2d58733c9f4add Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 16 Jul 2024 21:48:15 -0600 Subject: [PATCH] Update durations in seconds --- 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 6928358..f43b9c8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1073,7 +1073,7 @@ export type TargetMetricsGql = { export type UploadSegmentGql = { __typename?: "UploadSegmentGQL"; - durationsInSeconds?: Maybe; + durationInSeconds?: Maybe; endFrameIndex?: Maybe; framesPerSecond?: Maybe; linksRequested: Scalars["Int"]["output"]; diff --git a/src/schema.gql b/src/schema.gql index a1ea6fd..74e1f0d 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -287,7 +287,7 @@ type UploadSegmentGQL { valid: Boolean! endFrameIndex: Int framesPerSecond: Float - durationsInSeconds: Float + durationInSeconds: Float linksRequested: Int! }