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"]>;
|
||||
id: Scalars["Int"]["output"];
|
||||
mode: VideoExportModeEnum;
|
||||
runId?: Maybe<Scalars["Int"]["output"]>;
|
||||
shotIds?: Maybe<Array<Scalars["Int"]["output"]>>;
|
||||
status: VideoExportStatusEnum;
|
||||
videoId: Scalars["Int"]["output"];
|
||||
};
|
||||
@@ -7072,6 +7074,8 @@ export type VideoExportJobFieldsFragment = {
|
||||
videoId: number;
|
||||
mode: VideoExportModeEnum;
|
||||
status: VideoExportStatusEnum;
|
||||
shotIds?: Array<number> | 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<number> | 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<number> | 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<number> | 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
|
||||
|
||||
@@ -3,6 +3,8 @@ fragment VideoExportJobFields on VideoExportJobGQL {
|
||||
videoId
|
||||
mode
|
||||
status
|
||||
shotIds
|
||||
runId
|
||||
downloadUrl
|
||||
fileSizeBytes
|
||||
expiresAt
|
||||
|
||||
@@ -1172,6 +1172,8 @@ type VideoExportJobGQL {
|
||||
videoId: Int!
|
||||
mode: VideoExportModeEnum!
|
||||
status: VideoExportStatusEnum!
|
||||
shotIds: [Int!]
|
||||
runId: Int
|
||||
downloadUrl: String
|
||||
fileSizeBytes: Int
|
||||
expiresAt: DateTime
|
||||
|
||||
Reference in New Issue
Block a user