From df3087de7d1fbb0a3a1b1fd3131b95f49f29d186 Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Tue, 13 Aug 2024 12:42:45 -0700 Subject: [PATCH] Add VideoProcessingStatus to VideoProcessing --- src/index.tsx | 10 ++++++++++ src/schema.gql | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 9a41ba2..131d235 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1460,6 +1460,16 @@ export type VideoProcessingGql = { __typename?: "VideoProcessingGQL"; errors: Array; status: ProcessingStatusEnum; + statuses: Array; +}; + +export type VideoProcessingStatusGql = { + __typename?: "VideoProcessingStatusGQL"; + appVersion: Scalars["String"]["output"]; + createdAt?: Maybe; + sequenceId: Scalars["Int"]["output"]; + status: ProcessingStatusEnum; + updatedAt?: Maybe; }; export type VideoResolution = { diff --git a/src/schema.gql b/src/schema.gql index 787ecea..2379794 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -354,6 +354,7 @@ type IntPoint2D { type VideoProcessingGQL { errors: [VideoProcessingErrorGQL!]! status: ProcessingStatusEnum! + statuses: [VideoProcessingStatusGQL!]! } type VideoProcessingErrorGQL { @@ -373,6 +374,14 @@ enum ProcessingStatusEnum { REEXTRACTING_FEATURES } +type VideoProcessingStatusGQL { + status: ProcessingStatusEnum! + appVersion: String! + sequenceId: Int! + createdAt: DateTime + updatedAt: DateTime +} + input GetShotsPagination { createdAfter: CreatedAfter! startFrameAfter: Int!