get rid of metadata input
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
Mike Kalange 2024-10-18 11:51:38 -07:00
parent c98a65bb6f
commit d15dae23c1
2 changed files with 0 additions and 38 deletions

View File

@ -166,12 +166,6 @@ export type DeployedConfigGql = {
minimumAllowedAppVersion: Scalars["String"]["output"]; minimumAllowedAppVersion: Scalars["String"]["output"];
}; };
export enum DeviceTypeEnum {
Android = "ANDROID",
Browser = "BROWSER",
Ios = "IOS",
}
export type DoesNotOwnShotErr = { export type DoesNotOwnShotErr = {
__typename?: "DoesNotOwnShotErr"; __typename?: "DoesNotOwnShotErr";
msg?: Maybe<Scalars["String"]["output"]>; msg?: Maybe<Scalars["String"]["output"]>;
@ -2273,18 +2267,6 @@ export type UploadStreamGql = {
uploadsCompleted: Scalars["Int"]["output"]; uploadsCompleted: Scalars["Int"]["output"];
}; };
export type UploadStreamMetadataInput = {
appVersion?: InputMaybe<Scalars["String"]["input"]>;
browserName?: InputMaybe<Scalars["String"]["input"]>;
browserVersion?: InputMaybe<Scalars["String"]["input"]>;
deviceType?: InputMaybe<DeviceTypeEnum>;
ipAddress?: InputMaybe<Scalars["String"]["input"]>;
locale?: InputMaybe<Scalars["String"]["input"]>;
networkType?: InputMaybe<Scalars["String"]["input"]>;
osVersion?: InputMaybe<Scalars["String"]["input"]>;
timezone?: InputMaybe<Scalars["String"]["input"]>;
};
export type UserGql = { export type UserGql = {
__typename?: "UserGQL"; __typename?: "UserGQL";
activeVideoId?: Maybe<Scalars["Int"]["output"]>; activeVideoId?: Maybe<Scalars["Int"]["output"]>;
@ -2351,7 +2333,6 @@ export type VideoMetadataInput = {
startTime?: InputMaybe<Scalars["DateTime"]["input"]>; startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>; streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
tableSize?: InputMaybe<Scalars["Float"]["input"]>; tableSize?: InputMaybe<Scalars["Float"]["input"]>;
uploadStreamMetadataInput?: InputMaybe<UploadStreamMetadataInput>;
videoName?: InputMaybe<Scalars["String"]["input"]>; videoName?: InputMaybe<Scalars["String"]["input"]>;
}; };

View File

@ -667,7 +667,6 @@ input VideoMetadataInput {
endTime: DateTime = null endTime: DateTime = null
gameType: String = null gameType: String = null
tableSize: Float = null tableSize: Float = null
uploadStreamMetadataInput: UploadStreamMetadataInput = null
lastIntendedSegmentBound: Int = null lastIntendedSegmentBound: Int = null
streamSegmentType: StreamSegmentTypeEnum = null streamSegmentType: StreamSegmentTypeEnum = null
endStream: Boolean! = false endStream: Boolean! = false
@ -675,24 +674,6 @@ input VideoMetadataInput {
framesPerSecond: Float = null 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 { input VideoResolution {
width: Int! width: Int!
height: Int! height: Int!