add currentProcessing and errors to schema/index and getStreamMonitoringDetails operation

This commit is contained in:
2024-05-14 18:35:24 -07:00
parent 231076496a
commit f8c5cf74f8
3 changed files with 47 additions and 0 deletions

View File

@@ -217,6 +217,7 @@ type VideoGQL {
playlist: HLSPlaylistGQL
tags: [VideoTag!]!
homographyHistory: [HomographyInfoGQL!]!
currentProcessing: VideoProcessingGQL
}
type UploadStreamGQL {
@@ -292,6 +293,16 @@ type IntPoint2D {
y: Int!
}
type VideoProcessingGQL {
errors: [VideoProcessingErrorGQL!]!
}
type VideoProcessingErrorGQL {
message: String!
startSegmentIndex: Int
endSegmentIndex: Int
}
type PageInfoGQL {
hasNextPage: Boolean!
endCursor: String