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

View File

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

View File

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