From a95bdab8bf6c9a4df72cf161d536a34c47a6261e Mon Sep 17 00:00:00 2001 From: Loewy Date: Thu, 18 Jul 2024 16:14:28 -0700 Subject: [PATCH] ad frames per second to schema --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index a1c934f..6d2c6ae 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1167,6 +1167,7 @@ export type VideoHistoryGql = { export type VideoMetadataInput = { endStream?: Scalars["Boolean"]["input"]; endTime?: InputMaybe; + framesPerSecond?: InputMaybe; gameType?: InputMaybe; lastIntendedSegmentBound?: InputMaybe; resolution?: InputMaybe; diff --git a/src/schema.gql b/src/schema.gql index 83e5233..9a01233 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -405,6 +405,7 @@ input VideoMetadataInput { streamSegmentType: StreamSegmentTypeEnum = null endStream: Boolean! = false resolution: VideoResolution = null + framesPerSecond: Float = null } input UploadStreamMetadataInput {