Add id to video processing gql
This commit is contained in:
parent
4e610b7df2
commit
08ae9611cf
@ -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
|
||||
}
|
||||
|
@ -70,6 +70,7 @@ fragment VideoCardFields on VideoGQL {
|
||||
name
|
||||
}
|
||||
currentProcessing {
|
||||
id
|
||||
errors {
|
||||
message
|
||||
}
|
||||
|
@ -538,6 +538,7 @@ type IntPoint2D {
|
||||
}
|
||||
|
||||
type VideoProcessingGQL {
|
||||
id: Int!
|
||||
errors: [VideoProcessingErrorGQL!]!
|
||||
status: ProcessingStatusEnum!
|
||||
statuses: [VideoProcessingStatusGQL!]!
|
||||
|
Loading…
Reference in New Issue
Block a user