Compare commits

..

1 Commits

Author SHA1 Message Date
88afcc38cc add initPlaylistUploadStatus to UploadStreamWithDetails fragment
All checks were successful
Tests / Tests (pull_request) Successful in 11s
2026-04-13 16:33:52 -07:00
2 changed files with 4 additions and 0 deletions

View File

@@ -6450,6 +6450,7 @@ export type UploadStreamWithDetailsFragment = {
lastIntendedSegmentBound?: number | null;
uploadCompletionCursor: number;
uploadsCompleted: number;
initPlaylistUploadStatus?: InitPlaylistUploadStatusEnum | null;
} | null;
};
@@ -6474,6 +6475,7 @@ export type GetUploadStreamsWithDetailsQuery = {
lastIntendedSegmentBound?: number | null;
uploadCompletionCursor: number;
uploadsCompleted: number;
initPlaylistUploadStatus?: InitPlaylistUploadStatusEnum | null;
} | null;
}>;
pageInfo: {
@@ -6816,6 +6818,7 @@ export const UploadStreamWithDetailsFragmentDoc = gql`
lastIntendedSegmentBound
uploadCompletionCursor
uploadsCompleted
initPlaylistUploadStatus
}
}
`;

View File

@@ -117,6 +117,7 @@ fragment UploadStreamWithDetails on VideoGQL {
lastIntendedSegmentBound
uploadCompletionCursor
uploadsCompleted
initPlaylistUploadStatus
}
}