Remove error default from operation #86

Merged
loewy merged 1 commits from loewy/remove-error-default into master 2024-10-24 12:28:40 -06:00
3 changed files with 6 additions and 3 deletions

View File

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

View File

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

View File

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