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