Tweaks for Debugging #32
@ -1460,6 +1460,16 @@ export type VideoProcessingGql = {
|
|||||||
__typename?: "VideoProcessingGQL";
|
__typename?: "VideoProcessingGQL";
|
||||||
errors: Array<VideoProcessingErrorGql>;
|
errors: Array<VideoProcessingErrorGql>;
|
||||||
status: ProcessingStatusEnum;
|
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 = {
|
export type VideoResolution = {
|
||||||
|
@ -354,6 +354,7 @@ type IntPoint2D {
|
|||||||
type VideoProcessingGQL {
|
type VideoProcessingGQL {
|
||||||
errors: [VideoProcessingErrorGQL!]!
|
errors: [VideoProcessingErrorGQL!]!
|
||||||
status: ProcessingStatusEnum!
|
status: ProcessingStatusEnum!
|
||||||
|
statuses: [VideoProcessingStatusGQL!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type VideoProcessingErrorGQL {
|
type VideoProcessingErrorGQL {
|
||||||
@ -373,6 +374,14 @@ enum ProcessingStatusEnum {
|
|||||||
REEXTRACTING_FEATURES
|
REEXTRACTING_FEATURES
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type VideoProcessingStatusGQL {
|
||||||
|
status: ProcessingStatusEnum!
|
||||||
|
appVersion: String!
|
||||||
|
sequenceId: Int!
|
||||||
|
createdAt: DateTime
|
||||||
|
updatedAt: DateTime
|
||||||
|
}
|
||||||
|
|
||||||
input GetShotsPagination {
|
input GetShotsPagination {
|
||||||
createdAfter: CreatedAfter!
|
createdAfter: CreatedAfter!
|
||||||
startFrameAfter: Int!
|
startFrameAfter: Int!
|
||||||
|
Loading…
Reference in New Issue
Block a user