Compare commits
	
		
			1 Commits
		
	
	
		
			9db95c4e6c
			...
			micah/add-
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 0999c88797 | 
| @@ -1170,7 +1170,7 @@ export type VideoMetadataInput = { | ||||
|   framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>; | ||||
|   gameType?: InputMaybe<Scalars["String"]["input"]>; | ||||
|   lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>; | ||||
|   resolution?: InputMaybe<VideoResolution>; | ||||
|   resolution: VideoResolution; | ||||
|   startTime?: InputMaybe<Scalars["DateTime"]["input"]>; | ||||
|   streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>; | ||||
|   tableSize?: InputMaybe<Scalars["String"]["input"]>; | ||||
|   | ||||
| @@ -395,6 +395,7 @@ type CreateUploadStreamReturn { | ||||
| } | ||||
|  | ||||
| input VideoMetadataInput { | ||||
|   resolution: VideoResolution! | ||||
|   videoName: String = null | ||||
|   startTime: DateTime = null | ||||
|   endTime: DateTime = null | ||||
| @@ -404,10 +405,14 @@ input VideoMetadataInput { | ||||
|   lastIntendedSegmentBound: Int = null | ||||
|   streamSegmentType: StreamSegmentTypeEnum = null | ||||
|   endStream: Boolean! = false | ||||
|   resolution: VideoResolution = null | ||||
|   framesPerSecond: Float = null | ||||
| } | ||||
|  | ||||
| input VideoResolution { | ||||
|   width: Int! | ||||
|   height: Int! | ||||
| } | ||||
|  | ||||
| input UploadStreamMetadataInput { | ||||
|   deviceType: DeviceTypeEnum = null | ||||
|   osVersion: String = null | ||||
| @@ -430,8 +435,3 @@ enum StreamSegmentTypeEnum { | ||||
|   FRAGMENTED_MP4 | ||||
|   RB_CHUNKED_MP4 | ||||
| } | ||||
|  | ||||
| input VideoResolution { | ||||
|   width: Int! | ||||
|   height: Int! | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user