diff --git a/src/index.tsx b/src/index.tsx index 625d3b6..aadb19e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3700,6 +3700,8 @@ export type VideoExportJobGql = { shotIds?: Maybe>; status: VideoExportStatusEnum; videoId: Scalars["Int"]["output"]; + videoName?: Maybe; + videoThumbnailUri?: Maybe; }; export enum VideoExportModeEnum { @@ -7090,6 +7092,8 @@ export type VideoExportJobFieldsFragment = { videoId: number; mode: VideoExportModeEnum; status: VideoExportStatusEnum; + videoName?: string | null; + videoThumbnailUri?: string | null; shotIds?: Array | null; runId?: number | null; downloadUrl?: string | null; @@ -7110,6 +7114,8 @@ export type RequestVideoExportMutation = { videoId: number; mode: VideoExportModeEnum; status: VideoExportStatusEnum; + videoName?: string | null; + videoThumbnailUri?: string | null; shotIds?: Array | null; runId?: number | null; downloadUrl?: string | null; @@ -7140,6 +7146,8 @@ export type VideoExportJobQuery = { videoId: number; mode: VideoExportModeEnum; status: VideoExportStatusEnum; + videoName?: string | null; + videoThumbnailUri?: string | null; shotIds?: Array | null; runId?: number | null; downloadUrl?: string | null; @@ -7162,6 +7170,8 @@ export type MyVideoExportsQuery = { videoId: number; mode: VideoExportModeEnum; status: VideoExportStatusEnum; + videoName?: string | null; + videoThumbnailUri?: string | null; shotIds?: Array | null; runId?: number | null; downloadUrl?: string | null; @@ -7751,6 +7761,8 @@ export const VideoExportJobFieldsFragmentDoc = gql` videoId mode status + videoName + videoThumbnailUri shotIds runId downloadUrl diff --git a/src/operations/video_export.gql b/src/operations/video_export.gql index d76a79b..2882fde 100644 --- a/src/operations/video_export.gql +++ b/src/operations/video_export.gql @@ -3,6 +3,8 @@ fragment VideoExportJobFields on VideoExportJobGQL { videoId mode status + videoName + videoThumbnailUri shotIds runId downloadUrl diff --git a/src/schema.gql b/src/schema.gql index 6eef108..d977526 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -1173,6 +1173,8 @@ type VideoExportJobGQL { videoId: Int! mode: VideoExportModeEnum! status: VideoExportStatusEnum! + videoName: String + videoThumbnailUri: String shotIds: [Int!] runId: Int downloadUrl: String