Tweaks for Debugging #32
@ -1460,6 +1460,16 @@ export type VideoProcessingGql = {
|
||||
__typename?: "VideoProcessingGQL";
|
||||
errors: Array<VideoProcessingErrorGql>;
|
||||
status: ProcessingStatusEnum;
|
||||
statuses: Array<VideoProcessingStatusGql>;
|
||||
};
|
||||
|
||||
export type VideoProcessingStatusGql = {
|
||||
__typename?: "VideoProcessingStatusGQL";
|
||||
appVersion: Scalars["String"]["output"];
|
||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
sequenceId: Scalars["Int"]["output"];
|
||||
status: ProcessingStatusEnum;
|
||||
updatedAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
};
|
||||
|
||||
export type VideoResolution = {
|
||||
|
@ -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!
|
||||
|
Loading…
Reference in New Issue
Block a user