Expose upload cursor in video gql

This commit is contained in:
Ivan Malison 2024-04-16 17:49:50 -06:00
parent 514f2ef928
commit 24fcac9318
2 changed files with 2 additions and 0 deletions

View File

@ -352,6 +352,7 @@ export type UploadStreamGql = {
id: Scalars["ID"]["output"];
isCompleted: Scalars["Boolean"]["output"];
linksRequested: Scalars["Int"]["output"];
lowestUnuploadedSegmentIndex: Scalars["Int"]["output"];
segmentProcessingCursor: Scalars["Int"]["output"];
updatedAt: Scalars["DateTime"]["output"];
uploadsCompleted: Scalars["Int"]["output"];

View File

@ -217,6 +217,7 @@ type UploadStreamGQL {
uploadsCompleted: Int!
segmentProcessingCursor: Int!
isCompleted: Boolean!
lowestUnuploadedSegmentIndex: Int!
errors: [StreamErrorGQL!]!
createdAt: DateTime!
updatedAt: DateTime!