add lowest unuploaded segment to gql

This commit is contained in:
Mike Kalange 2024-04-25 16:36:32 -06:00
parent d67b413860
commit b74fb2b1d7
2 changed files with 4 additions and 0 deletions

View File

@ -364,6 +364,7 @@ export type UploadStreamGql = {
errors: Array<StreamErrorGql>; errors: Array<StreamErrorGql>;
id: Scalars["ID"]["output"]; id: Scalars["ID"]["output"];
isCompleted: Scalars["Boolean"]["output"]; isCompleted: Scalars["Boolean"]["output"];
lastIntendedSegmentBound: Scalars["Int"]["output"];
linksRequested: Scalars["Int"]["output"]; linksRequested: Scalars["Int"]["output"];
lowestUnuploadedSegmentIndex: Scalars["Int"]["output"]; lowestUnuploadedSegmentIndex: Scalars["Int"]["output"];
segmentProcessingCursor: Scalars["Int"]["output"]; segmentProcessingCursor: Scalars["Int"]["output"];
@ -436,6 +437,7 @@ export type VideoMetadataInput = {
endStream?: Scalars["Boolean"]["input"]; endStream?: Scalars["Boolean"]["input"];
endTime?: InputMaybe<Scalars["DateTime"]["input"]>; endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
gameType?: InputMaybe<Scalars["String"]["input"]>; gameType?: InputMaybe<Scalars["String"]["input"]>;
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
startTime?: InputMaybe<Scalars["DateTime"]["input"]>; startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
tableSize?: InputMaybe<Scalars["String"]["input"]>; tableSize?: InputMaybe<Scalars["String"]["input"]>;
uploadStreamMetadataInput?: InputMaybe<UploadStreamMetadataInput>; uploadStreamMetadataInput?: InputMaybe<UploadStreamMetadataInput>;

View File

@ -220,6 +220,7 @@ type UploadStreamGQL {
linksRequested: Int! linksRequested: Int!
uploadsCompleted: Int! uploadsCompleted: Int!
segmentProcessingCursor: Int! segmentProcessingCursor: Int!
lastIntendedSegmentBound: Int!
isCompleted: Boolean! isCompleted: Boolean!
lowestUnuploadedSegmentIndex: Int! lowestUnuploadedSegmentIndex: Int!
errors: [StreamErrorGQL!]! errors: [StreamErrorGQL!]!
@ -324,6 +325,7 @@ input VideoMetadataInput {
gameType: String = null gameType: String = null
tableSize: String = null tableSize: String = null
uploadStreamMetadataInput: UploadStreamMetadataInput = null uploadStreamMetadataInput: UploadStreamMetadataInput = null
lastIntendedSegmentBound: Int = null
endStream: Boolean! = false endStream: Boolean! = false
} }