From 8771350115eeb21d395cdb23d67c98e2824ed248 Mon Sep 17 00:00:00 2001 From: Dean Wenstrand Date: Tue, 30 Jun 2026 14:00:04 -0700 Subject: [PATCH] Echo shotIds/runId on VideoExportJobGQL for re-export Co-Authored-By: Claude Opus 4.8 --- src/index.tsx | 12 ++++++++++++ src/operations/video_export.gql | 2 ++ src/schema.gql | 2 ++ 3 files changed, 16 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 9070f3a..8401e87 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3680,6 +3680,8 @@ export type VideoExportJobGql = { fileSizeBytes?: Maybe; id: Scalars["Int"]["output"]; mode: VideoExportModeEnum; + runId?: Maybe; + shotIds?: Maybe>; status: VideoExportStatusEnum; videoId: Scalars["Int"]["output"]; }; @@ -7072,6 +7074,8 @@ export type VideoExportJobFieldsFragment = { videoId: number; mode: VideoExportModeEnum; status: VideoExportStatusEnum; + shotIds?: Array | null; + runId?: number | null; downloadUrl?: string | null; fileSizeBytes?: number | null; expiresAt?: any | null; @@ -7090,6 +7094,8 @@ export type RequestVideoExportMutation = { videoId: number; mode: VideoExportModeEnum; status: VideoExportStatusEnum; + shotIds?: Array | null; + runId?: number | null; downloadUrl?: string | null; fileSizeBytes?: number | null; expiresAt?: any | null; @@ -7109,6 +7115,8 @@ export type VideoExportJobQuery = { videoId: number; mode: VideoExportModeEnum; status: VideoExportStatusEnum; + shotIds?: Array | null; + runId?: number | null; downloadUrl?: string | null; fileSizeBytes?: number | null; expiresAt?: any | null; @@ -7129,6 +7137,8 @@ export type MyVideoExportsQuery = { videoId: number; mode: VideoExportModeEnum; status: VideoExportStatusEnum; + shotIds?: Array | null; + runId?: number | null; downloadUrl?: string | null; fileSizeBytes?: number | null; expiresAt?: any | null; @@ -7707,6 +7717,8 @@ export const VideoExportJobFieldsFragmentDoc = gql` videoId mode status + shotIds + runId downloadUrl fileSizeBytes expiresAt diff --git a/src/operations/video_export.gql b/src/operations/video_export.gql index b65d0b8..86a1fb2 100644 --- a/src/operations/video_export.gql +++ b/src/operations/video_export.gql @@ -3,6 +3,8 @@ fragment VideoExportJobFields on VideoExportJobGQL { videoId mode status + shotIds + runId downloadUrl fileSizeBytes expiresAt diff --git a/src/schema.gql b/src/schema.gql index c2dfb10..f87bd38 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -1172,6 +1172,8 @@ type VideoExportJobGQL { videoId: Int! mode: VideoExportModeEnum! status: VideoExportStatusEnum! + shotIds: [Int!] + runId: Int downloadUrl: String fileSizeBytes: Int expiresAt: DateTime