diff --git a/.gitignore b/.gitignore index 545487d..65afc31 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ dist .direnv /after.txt /before.txt +**/__pycache__/** 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 {