Adds init playlist status
All checks were successful
Tests / Tests (pull_request) Successful in 14s

This commit is contained in:
2024-07-16 14:21:45 -07:00
parent 524d469a0d
commit 1a14db1a17
2 changed files with 14 additions and 0 deletions

View File

@@ -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!
}