diff --git a/src/index.tsx b/src/index.tsx index dcabd3d..eb3df3c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -833,6 +833,12 @@ export type HomographyInfoGql = { sourcePoints: PocketPointsGql; }; +export enum InitPlaylistUploadStatusEnum { + NotApplicable = "NOT_APPLICABLE", + NotUploaded = "NOT_UPLOADED", + Uploaded = "UPLOADED", +} + export type IntPoint2D = { __typename?: "IntPoint2D"; x: Scalars["Int"]["output"]; @@ -1081,6 +1087,7 @@ export type UploadStreamGql = { createdAt: Scalars["DateTime"]["output"]; errors: Array; id: Scalars["ID"]["output"]; + initPlaylistUploadStatus?: Maybe; isCompleted: Scalars["Boolean"]["output"]; lastIntendedSegmentBound?: Maybe; linksRequested: Scalars["Int"]["output"]; diff --git a/src/schema.gql b/src/schema.gql index d10d003..2512dcc 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -262,6 +262,7 @@ type UploadStreamGQL { segmentProcessingCursor: Int! lastIntendedSegmentBound: Int isCompleted: Boolean! + initPlaylistUploadStatus: InitPlaylistUploadStatusEnum lowestUnuploadedSegmentIndex: Int! uploadCompletionCursor: Int! errors: [StreamErrorGQL!]! @@ -270,6 +271,12 @@ type UploadStreamGQL { segments: [UploadSegmentGQL!]! } +enum InitPlaylistUploadStatusEnum { + NOT_APPLICABLE + NOT_UPLOADED + UPLOADED +} + type StreamErrorGQL { message: String! }