From d15dae23c18888fb4aabcf9a7e06d59d99dc4af0 Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Fri, 18 Oct 2024 11:51:38 -0700 Subject: [PATCH] get rid of metadata input --- src/index.tsx | 19 ------------------- src/schema.gql | 19 ------------------- 2 files changed, 38 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 263e9d6..3a2fcf2 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -166,12 +166,6 @@ export type DeployedConfigGql = { minimumAllowedAppVersion: Scalars["String"]["output"]; }; -export enum DeviceTypeEnum { - Android = "ANDROID", - Browser = "BROWSER", - Ios = "IOS", -} - export type DoesNotOwnShotErr = { __typename?: "DoesNotOwnShotErr"; msg?: Maybe; @@ -2273,18 +2267,6 @@ export type UploadStreamGql = { uploadsCompleted: Scalars["Int"]["output"]; }; -export type UploadStreamMetadataInput = { - appVersion?: InputMaybe; - browserName?: InputMaybe; - browserVersion?: InputMaybe; - deviceType?: InputMaybe; - ipAddress?: InputMaybe; - locale?: InputMaybe; - networkType?: InputMaybe; - osVersion?: InputMaybe; - timezone?: InputMaybe; -}; - export type UserGql = { __typename?: "UserGQL"; activeVideoId?: Maybe; @@ -2351,7 +2333,6 @@ export type VideoMetadataInput = { startTime?: InputMaybe; streamSegmentType?: InputMaybe; tableSize?: InputMaybe; - uploadStreamMetadataInput?: InputMaybe; videoName?: InputMaybe; }; diff --git a/src/schema.gql b/src/schema.gql index 248a2a3..c6fb85e 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -667,7 +667,6 @@ input VideoMetadataInput { endTime: DateTime = null gameType: String = null tableSize: Float = null - uploadStreamMetadataInput: UploadStreamMetadataInput = null lastIntendedSegmentBound: Int = null streamSegmentType: StreamSegmentTypeEnum = null endStream: Boolean! = false @@ -675,24 +674,6 @@ input VideoMetadataInput { framesPerSecond: Float = null } -input UploadStreamMetadataInput { - deviceType: DeviceTypeEnum = null - osVersion: String = null - appVersion: String = null - browserName: String = null - browserVersion: String = null - locale: String = null - timezone: String = null - networkType: String = null - ipAddress: String = null -} - -enum DeviceTypeEnum { - IOS - ANDROID - BROWSER -} - input VideoResolution { width: Int! height: Int! -- 2.46.1