regenerate gql, fix type imports

This commit is contained in:
2024-05-20 22:39:47 -07:00
parent 072235f032
commit e86f40c620
2 changed files with 28 additions and 4 deletions

View File

@@ -217,6 +217,7 @@ type VideoGQL {
playlist: HLSPlaylistGQL
tags: [VideoTag!]!
homographyHistory: [HomographyInfoGQL!]!
currentProcessing: VideoProcessingGQL
}
type UploadStreamGQL {
@@ -224,7 +225,7 @@ type UploadStreamGQL {
linksRequested: Int!
uploadsCompleted: Int!
segmentProcessingCursor: Int!
lastIntendedSegmentBound: Int!
lastIntendedSegmentBound: Int
isCompleted: Boolean!
lowestUnuploadedSegmentIndex: Int!
uploadCompletionCursor: Int!
@@ -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