Echo shotIds/runId on VideoExportJobGQL for re-export
All checks were successful
Tests / Tests (pull_request) Successful in 13s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Dean Wenstrand
2026-06-30 14:00:04 -07:00
parent f1594b8492
commit 8771350115
3 changed files with 16 additions and 0 deletions

View File

@@ -3680,6 +3680,8 @@ export type VideoExportJobGql = {
fileSizeBytes?: Maybe<Scalars["Int"]["output"]>; fileSizeBytes?: Maybe<Scalars["Int"]["output"]>;
id: Scalars["Int"]["output"]; id: Scalars["Int"]["output"];
mode: VideoExportModeEnum; mode: VideoExportModeEnum;
runId?: Maybe<Scalars["Int"]["output"]>;
shotIds?: Maybe<Array<Scalars["Int"]["output"]>>;
status: VideoExportStatusEnum; status: VideoExportStatusEnum;
videoId: Scalars["Int"]["output"]; videoId: Scalars["Int"]["output"];
}; };
@@ -7072,6 +7074,8 @@ export type VideoExportJobFieldsFragment = {
videoId: number; videoId: number;
mode: VideoExportModeEnum; mode: VideoExportModeEnum;
status: VideoExportStatusEnum; status: VideoExportStatusEnum;
shotIds?: Array<number> | null;
runId?: number | null;
downloadUrl?: string | null; downloadUrl?: string | null;
fileSizeBytes?: number | null; fileSizeBytes?: number | null;
expiresAt?: any | null; expiresAt?: any | null;
@@ -7090,6 +7094,8 @@ export type RequestVideoExportMutation = {
videoId: number; videoId: number;
mode: VideoExportModeEnum; mode: VideoExportModeEnum;
status: VideoExportStatusEnum; status: VideoExportStatusEnum;
shotIds?: Array<number> | null;
runId?: number | null;
downloadUrl?: string | null; downloadUrl?: string | null;
fileSizeBytes?: number | null; fileSizeBytes?: number | null;
expiresAt?: any | null; expiresAt?: any | null;
@@ -7109,6 +7115,8 @@ export type VideoExportJobQuery = {
videoId: number; videoId: number;
mode: VideoExportModeEnum; mode: VideoExportModeEnum;
status: VideoExportStatusEnum; status: VideoExportStatusEnum;
shotIds?: Array<number> | null;
runId?: number | null;
downloadUrl?: string | null; downloadUrl?: string | null;
fileSizeBytes?: number | null; fileSizeBytes?: number | null;
expiresAt?: any | null; expiresAt?: any | null;
@@ -7129,6 +7137,8 @@ export type MyVideoExportsQuery = {
videoId: number; videoId: number;
mode: VideoExportModeEnum; mode: VideoExportModeEnum;
status: VideoExportStatusEnum; status: VideoExportStatusEnum;
shotIds?: Array<number> | null;
runId?: number | null;
downloadUrl?: string | null; downloadUrl?: string | null;
fileSizeBytes?: number | null; fileSizeBytes?: number | null;
expiresAt?: any | null; expiresAt?: any | null;
@@ -7707,6 +7717,8 @@ export const VideoExportJobFieldsFragmentDoc = gql`
videoId videoId
mode mode
status status
shotIds
runId
downloadUrl downloadUrl
fileSizeBytes fileSizeBytes
expiresAt expiresAt

View File

@@ -3,6 +3,8 @@ fragment VideoExportJobFields on VideoExportJobGQL {
videoId videoId
mode mode
status status
shotIds
runId
downloadUrl downloadUrl
fileSizeBytes fileSizeBytes
expiresAt expiresAt

View File

@@ -1172,6 +1172,8 @@ type VideoExportJobGQL {
videoId: Int! videoId: Int!
mode: VideoExportModeEnum! mode: VideoExportModeEnum!
status: VideoExportStatusEnum! status: VideoExportStatusEnum!
shotIds: [Int!]
runId: Int
downloadUrl: String downloadUrl: String
fileSizeBytes: Int fileSizeBytes: Int
expiresAt: DateTime expiresAt: DateTime