From fd49dec34caf9d442a0258ffa180a3a3469812a9 Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 16 Jul 2024 19:23:54 -0700 Subject: [PATCH] add initPlaylistUploadStatus --- src/index.tsx | 2 ++ src/operations/video.gql | 1 + 2 files changed, 3 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 4f0fbca..6928358 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1472,6 +1472,7 @@ export type GetStreamMonitoringDetailsQuery = { isCompleted: boolean; uploadCompletionCursor: number; lastIntendedSegmentBound?: number | null; + initPlaylistUploadStatus?: InitPlaylistUploadStatusEnum | null; } | null; currentProcessing?: { __typename?: "VideoProcessingGQL"; @@ -2671,6 +2672,7 @@ export const GetStreamMonitoringDetailsDocument = gql` isCompleted uploadCompletionCursor lastIntendedSegmentBound + initPlaylistUploadStatus } currentProcessing { errors { diff --git a/src/operations/video.gql b/src/operations/video.gql index 5c36a0b..72185b1 100644 --- a/src/operations/video.gql +++ b/src/operations/video.gql @@ -51,6 +51,7 @@ query GetStreamMonitoringDetails($videoId: Int!) { isCompleted uploadCompletionCursor lastIntendedSegmentBound + initPlaylistUploadStatus } currentProcessing { errors { -- 2.45.2