add lowest unuploaded segment to gql
This commit is contained in:
parent
d67b413860
commit
b74fb2b1d7
@ -364,6 +364,7 @@ export type UploadStreamGql = {
|
||||
errors: Array<StreamErrorGql>;
|
||||
id: Scalars["ID"]["output"];
|
||||
isCompleted: Scalars["Boolean"]["output"];
|
||||
lastIntendedSegmentBound: Scalars["Int"]["output"];
|
||||
linksRequested: Scalars["Int"]["output"];
|
||||
lowestUnuploadedSegmentIndex: Scalars["Int"]["output"];
|
||||
segmentProcessingCursor: Scalars["Int"]["output"];
|
||||
@ -436,6 +437,7 @@ export type VideoMetadataInput = {
|
||||
endStream?: Scalars["Boolean"]["input"];
|
||||
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||
tableSize?: InputMaybe<Scalars["String"]["input"]>;
|
||||
uploadStreamMetadataInput?: InputMaybe<UploadStreamMetadataInput>;
|
||||
|
@ -220,6 +220,7 @@ type UploadStreamGQL {
|
||||
linksRequested: Int!
|
||||
uploadsCompleted: Int!
|
||||
segmentProcessingCursor: Int!
|
||||
lastIntendedSegmentBound: Int!
|
||||
isCompleted: Boolean!
|
||||
lowestUnuploadedSegmentIndex: Int!
|
||||
errors: [StreamErrorGQL!]!
|
||||
@ -324,6 +325,7 @@ input VideoMetadataInput {
|
||||
gameType: String = null
|
||||
tableSize: String = null
|
||||
uploadStreamMetadataInput: UploadStreamMetadataInput = null
|
||||
lastIntendedSegmentBound: Int = null
|
||||
endStream: Boolean! = false
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user