Expose upload completion cursor

This commit is contained in:
Ivan Malison 2024-05-01 17:39:52 -06:00
parent 5d99ec7673
commit a7c8e07eb7
2 changed files with 4 additions and 2 deletions

View File

@ -382,8 +382,9 @@ export type UploadStreamGql = {
linksRequested: Scalars["Int"]["output"]; linksRequested: Scalars["Int"]["output"];
lowestUnuploadedSegmentIndex: Scalars["Int"]["output"]; lowestUnuploadedSegmentIndex: Scalars["Int"]["output"];
segmentProcessingCursor: Scalars["Int"]["output"]; segmentProcessingCursor: Scalars["Int"]["output"];
segments: Array<UploadSegmentGql>;
updatedAt: Scalars["DateTime"]["output"]; updatedAt: Scalars["DateTime"]["output"];
uploadSegments: Array<UploadSegmentGql>; uploadCompletionCursor: Scalars["Int"]["output"];
uploadsCompleted: Scalars["Int"]["output"]; uploadsCompleted: Scalars["Int"]["output"];
}; };

View File

@ -227,10 +227,11 @@ type UploadStreamGQL {
lastIntendedSegmentBound: Int! lastIntendedSegmentBound: Int!
isCompleted: Boolean! isCompleted: Boolean!
lowestUnuploadedSegmentIndex: Int! lowestUnuploadedSegmentIndex: Int!
uploadCompletionCursor: Int!
errors: [StreamErrorGQL!]! errors: [StreamErrorGQL!]!
createdAt: DateTime! createdAt: DateTime!
updatedAt: DateTime! updatedAt: DateTime!
uploadSegments: [UploadSegmentGQL!]! segments: [UploadSegmentGQL!]!
} }
type StreamErrorGQL { type StreamErrorGQL {