Compare commits
4 Commits
8246699915
...
volodymyr/
Author | SHA1 | Date | |
---|---|---|---|
b21a425065 | |||
b736a95124 | |||
d6ef3e0487 | |||
8c191bdb90 |
@@ -2700,7 +2700,11 @@ export type GetFeedQuery = {
|
||||
elapsedTime?: number | null;
|
||||
tableSize: number;
|
||||
owner?: { __typename?: "UserGQL"; username: string } | null;
|
||||
stream?: { __typename?: "UploadStreamGQL"; isCompleted: boolean } | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
isCompleted: boolean;
|
||||
} | null;
|
||||
tags: Array<{
|
||||
__typename?: "VideoTag";
|
||||
name: string;
|
||||
@@ -2777,7 +2781,6 @@ export type UpdateShotAnnotationsMutation = {
|
||||
__typename?: "ShotAnnotationGQL";
|
||||
shotId: number;
|
||||
notes: string;
|
||||
errorDefault: boolean;
|
||||
type: {
|
||||
__typename?: "ShotAnnotationTypeGQL";
|
||||
id: number;
|
||||
@@ -3196,6 +3199,7 @@ export type GetStreamMonitoringDetailsQuery = {
|
||||
} | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
linksRequested: number;
|
||||
uploadsCompleted: number;
|
||||
segmentProcessingCursor: number;
|
||||
@@ -3409,6 +3413,7 @@ export type GetVideoQuery = {
|
||||
}>;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
streamSegmentType: StreamSegmentTypeEnum;
|
||||
segments: Array<{
|
||||
__typename?: "UploadSegmentGQL";
|
||||
@@ -4052,6 +4057,7 @@ export const GetFeedDocument = gql`
|
||||
elapsedTime
|
||||
screenshotUri
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
}
|
||||
tableSize
|
||||
@@ -4378,7 +4384,6 @@ export const UpdateShotAnnotationsDocument = gql`
|
||||
name
|
||||
}
|
||||
notes
|
||||
errorDefault
|
||||
}
|
||||
}
|
||||
error {
|
||||
@@ -5326,6 +5331,7 @@ export const GetStreamMonitoringDetailsDocument = gql`
|
||||
}
|
||||
}
|
||||
stream {
|
||||
id
|
||||
linksRequested
|
||||
uploadsCompleted
|
||||
segmentProcessingCursor
|
||||
@@ -5833,6 +5839,7 @@ export const GetVideoDocument = gql`
|
||||
}
|
||||
}
|
||||
stream {
|
||||
id
|
||||
streamSegmentType
|
||||
segments {
|
||||
segmentIndex
|
||||
|
@@ -21,6 +21,7 @@ query GetFeed(
|
||||
elapsedTime
|
||||
screenshotUri
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
}
|
||||
tableSize
|
||||
|
@@ -31,7 +31,6 @@ mutation UpdateShotAnnotations(
|
||||
name
|
||||
}
|
||||
notes
|
||||
errorDefault
|
||||
}
|
||||
}
|
||||
error {
|
||||
|
@@ -45,6 +45,7 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
||||
}
|
||||
}
|
||||
stream {
|
||||
id
|
||||
linksRequested
|
||||
uploadsCompleted
|
||||
segmentProcessingCursor
|
||||
@@ -194,6 +195,7 @@ query GetVideo($videoId: Int!) {
|
||||
}
|
||||
}
|
||||
stream {
|
||||
id
|
||||
streamSegmentType
|
||||
segments {
|
||||
segmentIndex
|
||||
|
Reference in New Issue
Block a user