Add id to video processing gql

This commit is contained in:
Ivan Malison 2024-11-07 15:50:51 -07:00
parent 4e610b7df2
commit 08ae9611cf
3 changed files with 6 additions and 0 deletions

View File

@ -2664,6 +2664,7 @@ export type VideoProcessingErrorGql = {
export type VideoProcessingGql = {
__typename?: "VideoProcessingGQL";
errors: Array<VideoProcessingErrorGql>;
id: Scalars["Int"]["output"];
status: ProcessingStatusEnum;
statuses: Array<VideoProcessingStatusGql>;
};
@ -2824,6 +2825,7 @@ export type VideoCardFieldsFragment = {
}>;
currentProcessing?: {
__typename?: "VideoProcessingGQL";
id: number;
status: ProcessingStatusEnum;
errors: Array<{ __typename?: "VideoProcessingErrorGQL"; message: string }>;
statuses: Array<{
@ -2875,6 +2877,7 @@ export type GetVideoFeedQuery = {
}>;
currentProcessing?: {
__typename?: "VideoProcessingGQL";
id: number;
status: ProcessingStatusEnum;
errors: Array<{
__typename?: "VideoProcessingErrorGQL";
@ -4061,6 +4064,7 @@ export const VideoCardFieldsFragmentDoc = gql`
name
}
currentProcessing {
id
errors {
message
}

View File

@ -70,6 +70,7 @@ fragment VideoCardFields on VideoGQL {
name
}
currentProcessing {
id
errors {
message
}

View File

@ -538,6 +538,7 @@ type IntPoint2D {
}
type VideoProcessingGQL {
id: Int!
errors: [VideoProcessingErrorGQL!]!
status: ProcessingStatusEnum!
statuses: [VideoProcessingStatusGQL!]!