export const cancelJob = async (jobId: string): Promise<CancelJobResponse> => (
    await genericDelete<CancelJobResponse>(`jobs/${jobId}/`)
)