Echo shotIds/runId on VideoExportJobGQL for re-export
All checks were successful
Tests / Tests (pull_request) Successful in 13s
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:
@@ -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
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ fragment VideoExportJobFields on VideoExportJobGQL {
|
|||||||
videoId
|
videoId
|
||||||
mode
|
mode
|
||||||
status
|
status
|
||||||
|
shotIds
|
||||||
|
runId
|
||||||
downloadUrl
|
downloadUrl
|
||||||
fileSizeBytes
|
fileSizeBytes
|
||||||
expiresAt
|
expiresAt
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user