From 9abb533be8687f8e6b0600da3d98785ce57b5306 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 12 Mar 2026 01:11:50 -0700 Subject: [PATCH] Add video processing labels to generated schema --- src/index.tsx | 2 ++ src/schema.gql | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 9679d75..f6257a5 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3492,6 +3492,8 @@ export type VideoProcessingGql = { errors: Array; framesProcessed?: Maybe; id: Scalars["Int"]["output"]; + labels: Array; + parentProcessingId?: Maybe; progressPercentage?: Maybe; status: ProcessingStatusEnum; statuses: Array; diff --git a/src/schema.gql b/src/schema.gql index 33a9be9..c8bbf17 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -605,6 +605,8 @@ type IntPoint2D { type VideoProcessingGQL { id: Int! + parentProcessingId: Int + labels: [String!]! errors: [VideoProcessingErrorGQL!]! status: ProcessingStatusEnum! statuses: [VideoProcessingStatusGQL!]!