This commit is contained in:
parent
c98a65bb6f
commit
d15dae23c1
@ -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<Scalars["String"]["output"]>;
|
||||
@ -2273,18 +2267,6 @@ export type UploadStreamGql = {
|
||||
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 = {
|
||||
__typename?: "UserGQL";
|
||||
activeVideoId?: Maybe<Scalars["Int"]["output"]>;
|
||||
@ -2351,7 +2333,6 @@ export type VideoMetadataInput = {
|
||||
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
|
||||
tableSize?: InputMaybe<Scalars["Float"]["input"]>;
|
||||
uploadStreamMetadataInput?: InputMaybe<UploadStreamMetadataInput>;
|
||||
videoName?: InputMaybe<Scalars["String"]["input"]>;
|
||||
};
|
||||
|
||||
|
@ -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!
|
||||
|
Loading…
Reference in New Issue
Block a user