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