Adds init playlist status #17
@ -557,6 +557,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"];
|
||||
@ -770,6 +776,7 @@ export type UploadStreamGql = {
|
||||
createdAt: Scalars["DateTime"]["output"];
|
||||
errors: Array<StreamErrorGql>;
|
||||
id: Scalars["ID"]["output"];
|
||||
initPlaylistUploadStatus?: Maybe<InitPlaylistUploadStatusEnum>;
|
||||
isCompleted: Scalars["Boolean"]["output"];
|
||||
lastIntendedSegmentBound?: Maybe<Scalars["Int"]["output"]>;
|
||||
linksRequested: Scalars["Int"]["output"];
|
||||
|
@ -240,6 +240,7 @@ type UploadStreamGQL {
|
||||
segmentProcessingCursor: Int!
|
||||
lastIntendedSegmentBound: Int
|
||||
isCompleted: Boolean!
|
||||
initPlaylistUploadStatus: InitPlaylistUploadStatusEnum
|
||||
lowestUnuploadedSegmentIndex: Int!
|
||||
uploadCompletionCursor: Int!
|
||||
errors: [StreamErrorGQL!]!
|
||||
@ -248,6 +249,12 @@ type UploadStreamGQL {
|
||||
segments: [UploadSegmentGQL!]!
|
||||
}
|
||||
|
||||
enum InitPlaylistUploadStatusEnum {
|
||||
NOT_APPLICABLE
|
||||
NOT_UPLOADED
|
||||
UPLOADED
|
||||
}
|
||||
|
||||
type StreamErrorGQL {
|
||||
message: String!
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user