Compare commits
7 Commits
5030ff560d
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| c4a2e184fb | |||
| f14cf3b255 | |||
| c46776d417 | |||
| 6ab5286a49 | |||
| cd6a33bfed | |||
| 07bb45942e | |||
| 9abb533be8 |
@@ -3506,6 +3506,8 @@ export type VideoProcessingGql = {
|
|||||||
errors: Array<VideoProcessingErrorGql>;
|
errors: Array<VideoProcessingErrorGql>;
|
||||||
framesProcessed?: Maybe<Scalars["Int"]["output"]>;
|
framesProcessed?: Maybe<Scalars["Int"]["output"]>;
|
||||||
id: Scalars["Int"]["output"];
|
id: Scalars["Int"]["output"];
|
||||||
|
labels: Array<Scalars["String"]["output"]>;
|
||||||
|
parentProcessingId?: Maybe<Scalars["Int"]["output"]>;
|
||||||
progressPercentage?: Maybe<Scalars["Float"]["output"]>;
|
progressPercentage?: Maybe<Scalars["Float"]["output"]>;
|
||||||
status: ProcessingStatusEnum;
|
status: ProcessingStatusEnum;
|
||||||
statuses: Array<VideoProcessingStatusGql>;
|
statuses: Array<VideoProcessingStatusGql>;
|
||||||
@@ -5685,6 +5687,7 @@ export type GetStreamMonitoringDetailsQuery = {
|
|||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
id: string;
|
id: string;
|
||||||
linksRequested: number;
|
linksRequested: number;
|
||||||
|
lowestUnuploadedSegmentIndex: number;
|
||||||
uploadsCompleted: number;
|
uploadsCompleted: number;
|
||||||
segmentProcessingCursor: number;
|
segmentProcessingCursor: number;
|
||||||
isCompleted: boolean;
|
isCompleted: boolean;
|
||||||
@@ -11967,6 +11970,7 @@ export const GetStreamMonitoringDetailsDocument = gql`
|
|||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
linksRequested
|
linksRequested
|
||||||
|
lowestUnuploadedSegmentIndex
|
||||||
uploadsCompleted
|
uploadsCompleted
|
||||||
segmentProcessingCursor
|
segmentProcessingCursor
|
||||||
isCompleted
|
isCompleted
|
||||||
@@ -13216,7 +13220,7 @@ export type FindPrerecordTableLayoutMutationOptions =
|
|||||||
export const CreateUploadStreamDocument = gql`
|
export const CreateUploadStreamDocument = gql`
|
||||||
mutation CreateUploadStream(
|
mutation CreateUploadStream(
|
||||||
$videoMetadataInput: VideoMetadataInput!
|
$videoMetadataInput: VideoMetadataInput!
|
||||||
$expectedDurationSeconds: Float
|
$expectedDurationSeconds: Float = null
|
||||||
) {
|
) {
|
||||||
createUploadStream(
|
createUploadStream(
|
||||||
videoMetadata: $videoMetadataInput
|
videoMetadata: $videoMetadataInput
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
|||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
linksRequested
|
linksRequested
|
||||||
|
lowestUnuploadedSegmentIndex
|
||||||
uploadsCompleted
|
uploadsCompleted
|
||||||
segmentProcessingCursor
|
segmentProcessingCursor
|
||||||
isCompleted
|
isCompleted
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
mutation CreateUploadStream(
|
mutation CreateUploadStream(
|
||||||
$videoMetadataInput: VideoMetadataInput!
|
$videoMetadataInput: VideoMetadataInput!
|
||||||
$expectedDurationSeconds: Float
|
$expectedDurationSeconds: Float = null
|
||||||
) {
|
) {
|
||||||
createUploadStream(
|
createUploadStream(
|
||||||
videoMetadata: $videoMetadataInput
|
videoMetadata: $videoMetadataInput
|
||||||
|
|||||||
@@ -606,6 +606,8 @@ type IntPoint2D {
|
|||||||
|
|
||||||
type VideoProcessingGQL {
|
type VideoProcessingGQL {
|
||||||
id: Int!
|
id: Int!
|
||||||
|
parentProcessingId: Int
|
||||||
|
labels: [String!]!
|
||||||
errors: [VideoProcessingErrorGQL!]!
|
errors: [VideoProcessingErrorGQL!]!
|
||||||
status: ProcessingStatusEnum!
|
status: ProcessingStatusEnum!
|
||||||
statuses: [VideoProcessingStatusGQL!]!
|
statuses: [VideoProcessingStatusGQL!]!
|
||||||
|
|||||||
Reference in New Issue
Block a user