Add resolution
This commit is contained in:
@@ -1169,6 +1169,7 @@ export type VideoMetadataInput = {
|
||||
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
resolution?: InputMaybe<VideoResolution>;
|
||||
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
|
||||
tableSize?: InputMaybe<Scalars["String"]["input"]>;
|
||||
@@ -1188,6 +1189,11 @@ export type VideoProcessingGql = {
|
||||
errors: Array<VideoProcessingErrorGql>;
|
||||
};
|
||||
|
||||
export type VideoResolution = {
|
||||
height: Scalars["Int"]["input"];
|
||||
width: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type VideoTag = {
|
||||
__typename?: "VideoTag";
|
||||
name: Scalars["String"]["output"];
|
||||
|
||||
Reference in New Issue
Block a user