regenerate gql, fix type imports
This commit is contained in:
@@ -378,7 +378,7 @@ export type UploadStreamGql = {
|
||||
errors: Array<StreamErrorGql>;
|
||||
id: Scalars["ID"]["output"];
|
||||
isCompleted: Scalars["Boolean"]["output"];
|
||||
lastIntendedSegmentBound: Scalars["Int"]["output"];
|
||||
lastIntendedSegmentBound?: Maybe<Scalars["Int"]["output"]>;
|
||||
linksRequested: Scalars["Int"]["output"];
|
||||
lowestUnuploadedSegmentIndex: Scalars["Int"]["output"];
|
||||
segmentProcessingCursor: Scalars["Int"]["output"];
|
||||
@@ -425,6 +425,7 @@ export type VideoGql = {
|
||||
__typename?: "VideoGQL";
|
||||
averageTimeBetweenShots?: Maybe<Scalars["Float"]["output"]>;
|
||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
currentProcessing?: Maybe<VideoProcessingGql>;
|
||||
elapsedTime?: Maybe<Scalars["Float"]["output"]>;
|
||||
endTime?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
framesPerSecond: Scalars["Float"]["output"];
|
||||
@@ -462,6 +463,18 @@ export type VideoMetadataInput = {
|
||||
videoName?: InputMaybe<Scalars["String"]["input"]>;
|
||||
};
|
||||
|
||||
export type VideoProcessingErrorGql = {
|
||||
__typename?: "VideoProcessingErrorGQL";
|
||||
endSegmentIndex?: Maybe<Scalars["Int"]["output"]>;
|
||||
message: Scalars["String"]["output"];
|
||||
startSegmentIndex?: Maybe<Scalars["Int"]["output"]>;
|
||||
};
|
||||
|
||||
export type VideoProcessingGql = {
|
||||
__typename?: "VideoProcessingGQL";
|
||||
errors: Array<VideoProcessingErrorGql>;
|
||||
};
|
||||
|
||||
export type VideoTag = {
|
||||
__typename?: "VideoTag";
|
||||
name: Scalars["String"]["output"];
|
||||
@@ -719,7 +732,7 @@ export type GetStreamMonitoringDetailsQuery = {
|
||||
segmentProcessingCursor: number;
|
||||
isCompleted: boolean;
|
||||
uploadCompletionCursor: number;
|
||||
lastIntendedSegmentBound: number;
|
||||
lastIntendedSegmentBound?: number | null;
|
||||
} | null;
|
||||
currentProcessing?: {
|
||||
__typename?: "VideoProcessingGQL";
|
||||
@@ -929,7 +942,7 @@ export type GetUploadStreamsWithDetailsQuery = {
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
isCompleted: boolean;
|
||||
lastIntendedSegmentBound: number;
|
||||
lastIntendedSegmentBound?: number | null;
|
||||
uploadCompletionCursor: number;
|
||||
} | null;
|
||||
}>;
|
||||
|
||||
Reference in New Issue
Block a user