Compare commits

...

1 Commits

Author SHA1 Message Date
6bcf9a2487 Add upload stream detail fields
All checks were successful
Tests / Tests (pull_request) Successful in 24s
2026-06-09 16:31:50 -07:00
2 changed files with 8 additions and 0 deletions

View File

@@ -6896,8 +6896,10 @@ export type UploadStreamWithDetailsFragment = {
startTime?: any | null;
stream?: {
__typename?: "UploadStreamGQL";
id: string;
isCompleted: boolean;
lastIntendedSegmentBound?: number | null;
streamSegmentType: StreamSegmentTypeEnum;
uploadCompletionCursor: number;
uploadsCompleted: number;
} | null;
@@ -6920,8 +6922,10 @@ export type GetUploadStreamsWithDetailsQuery = {
startTime?: any | null;
stream?: {
__typename?: "UploadStreamGQL";
id: string;
isCompleted: boolean;
lastIntendedSegmentBound?: number | null;
streamSegmentType: StreamSegmentTypeEnum;
uploadCompletionCursor: number;
uploadsCompleted: number;
} | null;
@@ -7309,8 +7313,10 @@ export const UploadStreamWithDetailsFragmentDoc = gql`
name
startTime
stream {
id
isCompleted
lastIntendedSegmentBound
streamSegmentType
uploadCompletionCursor
uploadsCompleted
}

View File

@@ -113,8 +113,10 @@ fragment UploadStreamWithDetails on VideoGQL {
name
startTime
stream {
id
isCompleted
lastIntendedSegmentBound
streamSegmentType
uploadCompletionCursor
uploadsCompleted
}