Compare commits
8 Commits
30cf72de78
...
micah/add-
| Author | SHA1 | Date | |
|---|---|---|---|
| 0999c88797 | |||
| d3559ede21 | |||
| ef6ccca3f9 | |||
| f781e9648f | |||
| 18d2eea029 | |||
| a95bdab8bf | |||
| eaeb1ed0ea | |||
| f9d6377fe4 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,3 +3,4 @@ dist
|
|||||||
.direnv
|
.direnv
|
||||||
/after.txt
|
/after.txt
|
||||||
/before.txt
|
/before.txt
|
||||||
|
**/__pycache__/**
|
||||||
|
|||||||
@@ -1073,7 +1073,7 @@ export type TargetMetricsGql = {
|
|||||||
|
|
||||||
export type UploadSegmentGql = {
|
export type UploadSegmentGql = {
|
||||||
__typename?: "UploadSegmentGQL";
|
__typename?: "UploadSegmentGQL";
|
||||||
durationsInSeconds?: Maybe<Scalars["Float"]["output"]>;
|
durationInSeconds?: Maybe<Scalars["Float"]["output"]>;
|
||||||
endFrameIndex?: Maybe<Scalars["Int"]["output"]>;
|
endFrameIndex?: Maybe<Scalars["Int"]["output"]>;
|
||||||
framesPerSecond?: Maybe<Scalars["Float"]["output"]>;
|
framesPerSecond?: Maybe<Scalars["Float"]["output"]>;
|
||||||
linksRequested: Scalars["Int"]["output"];
|
linksRequested: Scalars["Int"]["output"];
|
||||||
@@ -1167,8 +1167,10 @@ export type VideoHistoryGql = {
|
|||||||
export type VideoMetadataInput = {
|
export type VideoMetadataInput = {
|
||||||
endStream?: Scalars["Boolean"]["input"];
|
endStream?: Scalars["Boolean"]["input"];
|
||||||
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
|
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
|
resolution: VideoResolution;
|
||||||
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
|
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
|
||||||
tableSize?: InputMaybe<Scalars["String"]["input"]>;
|
tableSize?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
@@ -1188,6 +1190,11 @@ export type VideoProcessingGql = {
|
|||||||
errors: Array<VideoProcessingErrorGql>;
|
errors: Array<VideoProcessingErrorGql>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type VideoResolution = {
|
||||||
|
height: Scalars["Int"]["input"];
|
||||||
|
width: Scalars["Int"]["input"];
|
||||||
|
};
|
||||||
|
|
||||||
export type VideoTag = {
|
export type VideoTag = {
|
||||||
__typename?: "VideoTag";
|
__typename?: "VideoTag";
|
||||||
name: Scalars["String"]["output"];
|
name: Scalars["String"]["output"];
|
||||||
|
|||||||
@@ -287,7 +287,7 @@ type UploadSegmentGQL {
|
|||||||
valid: Boolean!
|
valid: Boolean!
|
||||||
endFrameIndex: Int
|
endFrameIndex: Int
|
||||||
framesPerSecond: Float
|
framesPerSecond: Float
|
||||||
durationsInSeconds: Float
|
durationInSeconds: Float
|
||||||
linksRequested: Int!
|
linksRequested: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -395,6 +395,7 @@ type CreateUploadStreamReturn {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input VideoMetadataInput {
|
input VideoMetadataInput {
|
||||||
|
resolution: VideoResolution!
|
||||||
videoName: String = null
|
videoName: String = null
|
||||||
startTime: DateTime = null
|
startTime: DateTime = null
|
||||||
endTime: DateTime = null
|
endTime: DateTime = null
|
||||||
@@ -404,6 +405,12 @@ input VideoMetadataInput {
|
|||||||
lastIntendedSegmentBound: Int = null
|
lastIntendedSegmentBound: Int = null
|
||||||
streamSegmentType: StreamSegmentTypeEnum = null
|
streamSegmentType: StreamSegmentTypeEnum = null
|
||||||
endStream: Boolean! = false
|
endStream: Boolean! = false
|
||||||
|
framesPerSecond: Float = null
|
||||||
|
}
|
||||||
|
|
||||||
|
input VideoResolution {
|
||||||
|
width: Int!
|
||||||
|
height: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
input UploadStreamMetadataInput {
|
input UploadStreamMetadataInput {
|
||||||
|
|||||||
Reference in New Issue
Block a user