Compare commits
1 Commits
master
...
d31d171ac3
| Author | SHA1 | Date | |
|---|---|---|---|
| d31d171ac3 |
@@ -3506,8 +3506,6 @@ 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>;
|
||||||
@@ -5687,7 +5685,6 @@ 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;
|
||||||
@@ -6250,7 +6247,6 @@ export type HomographyInfoFragment = {
|
|||||||
|
|
||||||
export type CreateUploadStreamMutationVariables = Exact<{
|
export type CreateUploadStreamMutationVariables = Exact<{
|
||||||
videoMetadataInput: VideoMetadataInput;
|
videoMetadataInput: VideoMetadataInput;
|
||||||
expectedDurationSeconds?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export type CreateUploadStreamMutation = {
|
export type CreateUploadStreamMutation = {
|
||||||
@@ -11970,7 +11966,6 @@ export const GetStreamMonitoringDetailsDocument = gql`
|
|||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
linksRequested
|
linksRequested
|
||||||
lowestUnuploadedSegmentIndex
|
|
||||||
uploadsCompleted
|
uploadsCompleted
|
||||||
segmentProcessingCursor
|
segmentProcessingCursor
|
||||||
isCompleted
|
isCompleted
|
||||||
@@ -13218,14 +13213,8 @@ export type FindPrerecordTableLayoutMutationOptions =
|
|||||||
FindPrerecordTableLayoutMutationVariables
|
FindPrerecordTableLayoutMutationVariables
|
||||||
>;
|
>;
|
||||||
export const CreateUploadStreamDocument = gql`
|
export const CreateUploadStreamDocument = gql`
|
||||||
mutation CreateUploadStream(
|
mutation CreateUploadStream($videoMetadataInput: VideoMetadataInput!) {
|
||||||
$videoMetadataInput: VideoMetadataInput!
|
createUploadStream(videoMetadata: $videoMetadataInput) {
|
||||||
$expectedDurationSeconds: Float = null
|
|
||||||
) {
|
|
||||||
createUploadStream(
|
|
||||||
videoMetadata: $videoMetadataInput
|
|
||||||
expectedDurationSeconds: $expectedDurationSeconds
|
|
||||||
) {
|
|
||||||
videoId
|
videoId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13249,7 +13238,6 @@ export type CreateUploadStreamMutationFn = Apollo.MutationFunction<
|
|||||||
* const [createUploadStreamMutation, { data, loading, error }] = useCreateUploadStreamMutation({
|
* const [createUploadStreamMutation, { data, loading, error }] = useCreateUploadStreamMutation({
|
||||||
* variables: {
|
* variables: {
|
||||||
* videoMetadataInput: // value for 'videoMetadataInput'
|
* videoMetadataInput: // value for 'videoMetadataInput'
|
||||||
* expectedDurationSeconds: // value for 'expectedDurationSeconds'
|
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
|||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
linksRequested
|
linksRequested
|
||||||
lowestUnuploadedSegmentIndex
|
|
||||||
uploadsCompleted
|
uploadsCompleted
|
||||||
segmentProcessingCursor
|
segmentProcessingCursor
|
||||||
isCompleted
|
isCompleted
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
mutation CreateUploadStream(
|
mutation CreateUploadStream($videoMetadataInput: VideoMetadataInput!) {
|
||||||
$videoMetadataInput: VideoMetadataInput!
|
createUploadStream(videoMetadata: $videoMetadataInput) {
|
||||||
$expectedDurationSeconds: Float = null
|
|
||||||
) {
|
|
||||||
createUploadStream(
|
|
||||||
videoMetadata: $videoMetadataInput
|
|
||||||
expectedDurationSeconds: $expectedDurationSeconds
|
|
||||||
) {
|
|
||||||
videoId
|
videoId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -606,8 +606,6 @@ 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