diff --git a/src/index.tsx b/src/index.tsx index 3f6265f..1c1445d 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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"]; diff --git a/src/schema.gql b/src/schema.gql index 0b4a5c2..103971e 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -217,6 +217,7 @@ type UploadStreamGQL { uploadsCompleted: Int! segmentProcessingCursor: Int! isCompleted: Boolean! + lowestUnuploadedSegmentIndex: Int! errors: [StreamErrorGQL!]! createdAt: DateTime! updatedAt: DateTime!