remove operations

This commit is contained in:
Loewy 2024-05-15 09:39:28 -07:00
parent f8c5cf74f8
commit b2db5bde2b
2 changed files with 0 additions and 23 deletions

View File

@ -730,15 +730,6 @@ export type GetStreamMonitoringDetailsQuery = {
uploadCompletionCursor: number; uploadCompletionCursor: number;
lastIntendedSegmentBound?: number | null; lastIntendedSegmentBound?: number | null;
} | null; } | null;
currentProcessing?: {
__typename?: "VideoProcessingGQL";
errors: Array<{
__typename?: "VideoProcessingErrorGQL";
message: string;
startSegmentIndex?: number | null;
endSegmentIndex?: number | null;
}>;
} | null;
}; };
}; };
@ -1669,13 +1660,6 @@ export const GetStreamMonitoringDetailsDocument = gql`
uploadCompletionCursor uploadCompletionCursor
lastIntendedSegmentBound lastIntendedSegmentBound
} }
currentProcessing {
errors {
message
startSegmentIndex
endSegmentIndex
}
}
} }
} }
`; `;

View File

@ -52,13 +52,6 @@ query GetStreamMonitoringDetails($videoId: Int!) {
uploadCompletionCursor uploadCompletionCursor
lastIntendedSegmentBound lastIntendedSegmentBound
} }
currentProcessing {
errors {
message
startSegmentIndex
endSegmentIndex
}
}
} }
} }