Add clientUploadStatus #137
@ -117,6 +117,11 @@ export type BucketSetInputGql = {
|
|||||||
feature: Scalars["String"]["input"];
|
feature: Scalars["String"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export enum ClientUploadStatusEnum {
|
||||||
|
UploadDisabled = "UPLOAD_DISABLED",
|
||||||
|
UploadEnabled = "UPLOAD_ENABLED",
|
||||||
|
}
|
||||||
|
|
||||||
export type CreateBucketSetInput = {
|
export type CreateBucketSetInput = {
|
||||||
buckets: Array<BucketInputGql>;
|
buckets: Array<BucketInputGql>;
|
||||||
feature: Scalars["String"]["input"];
|
feature: Scalars["String"]["input"];
|
||||||
@ -2546,6 +2551,7 @@ export type UploadSegmentGql = {
|
|||||||
|
|
||||||
export type UploadStreamGql = {
|
export type UploadStreamGql = {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
|
clientUploadStatus?: Maybe<ClientUploadStatusEnum>;
|
||||||
createdAt: Scalars["DateTime"]["output"];
|
createdAt: Scalars["DateTime"]["output"];
|
||||||
errors: Array<StreamErrorGql>;
|
errors: Array<StreamErrorGql>;
|
||||||
id: Scalars["ID"]["output"];
|
id: Scalars["ID"]["output"];
|
||||||
@ -2640,6 +2646,7 @@ export type VideoHistoryGql = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type VideoMetadataInput = {
|
export type VideoMetadataInput = {
|
||||||
|
clientUploadStatus?: InputMaybe<ClientUploadStatusEnum>;
|
||||||
endStream?: Scalars["Boolean"]["input"];
|
endStream?: Scalars["Boolean"]["input"];
|
||||||
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
|
@ -452,6 +452,7 @@ type UploadStreamGQL {
|
|||||||
createdAt: DateTime!
|
createdAt: DateTime!
|
||||||
updatedAt: DateTime!
|
updatedAt: DateTime!
|
||||||
segments: [UploadSegmentGQL!]!
|
segments: [UploadSegmentGQL!]!
|
||||||
|
clientUploadStatus: ClientUploadStatusEnum
|
||||||
resolution: VideoResolutionGQL!
|
resolution: VideoResolutionGQL!
|
||||||
streamSegmentType: StreamSegmentTypeEnum!
|
streamSegmentType: StreamSegmentTypeEnum!
|
||||||
}
|
}
|
||||||
@ -476,6 +477,11 @@ type UploadSegmentGQL {
|
|||||||
linksRequested: Int!
|
linksRequested: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum ClientUploadStatusEnum {
|
||||||
|
UPLOAD_ENABLED
|
||||||
|
UPLOAD_DISABLED
|
||||||
|
}
|
||||||
|
|
||||||
type VideoResolutionGQL {
|
type VideoResolutionGQL {
|
||||||
width: Int
|
width: Int
|
||||||
height: Int
|
height: Int
|
||||||
@ -771,6 +777,7 @@ input VideoMetadataInput {
|
|||||||
streamSegmentType: StreamSegmentTypeEnum = null
|
streamSegmentType: StreamSegmentTypeEnum = null
|
||||||
private: Boolean = null
|
private: Boolean = null
|
||||||
endStream: Boolean! = false
|
endStream: Boolean! = false
|
||||||
|
clientUploadStatus: ClientUploadStatusEnum = null
|
||||||
resolution: VideoResolution = null
|
resolution: VideoResolution = null
|
||||||
framesPerSecond: Float = null
|
framesPerSecond: Float = null
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user