Compare commits

..

No commits in common. "d6ef3e0487d62cb74e9a52478538720011168946" and "8246699915ed4b9f4b8ce66a0c86ea7ad754bee8" have entirely different histories.

3 changed files with 3 additions and 6 deletions

View File

@ -2777,6 +2777,7 @@ export type UpdateShotAnnotationsMutation = {
__typename?: "ShotAnnotationGQL";
shotId: number;
notes: string;
errorDefault: boolean;
type: {
__typename?: "ShotAnnotationTypeGQL";
id: number;
@ -3195,7 +3196,6 @@ export type GetStreamMonitoringDetailsQuery = {
} | null;
stream?: {
__typename?: "UploadStreamGQL";
id: string;
linksRequested: number;
uploadsCompleted: number;
segmentProcessingCursor: number;
@ -3409,7 +3409,6 @@ export type GetVideoQuery = {
}>;
stream?: {
__typename?: "UploadStreamGQL";
id: string;
streamSegmentType: StreamSegmentTypeEnum;
segments: Array<{
__typename?: "UploadSegmentGQL";
@ -4379,6 +4378,7 @@ export const UpdateShotAnnotationsDocument = gql`
name
}
notes
errorDefault
}
}
error {
@ -5326,7 +5326,6 @@ export const GetStreamMonitoringDetailsDocument = gql`
}
}
stream {
id
linksRequested
uploadsCompleted
segmentProcessingCursor
@ -5834,7 +5833,6 @@ export const GetVideoDocument = gql`
}
}
stream {
id
streamSegmentType
segments {
segmentIndex

View File

@ -31,6 +31,7 @@ mutation UpdateShotAnnotations(
name
}
notes
errorDefault
}
}
error {

View File

@ -45,7 +45,6 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
}
}
stream {
id
linksRequested
uploadsCompleted
segmentProcessingCursor
@ -195,7 +194,6 @@ query GetVideo($videoId: Int!) {
}
}
stream {
id
streamSegmentType
segments {
segmentIndex