UNPKG

@versatiledatakit/data-pipelines

Version:

Data Pipelines help Data Engineers develop, deploy, run, and manage data processing workloads (called 'Data Job')

15 lines (14 loc) 904 B
import { ServiceHttpErrorCodes } from '@versatiledatakit/shared'; import { TASK_LOAD_JOB_DETAILS, TASK_LOAD_JOB_EXECUTIONS, TASK_LOAD_JOB_STATE, TASK_LOAD_JOBS_STATE, TASK_UPDATE_JOB_DESCRIPTION, TASK_UPDATE_JOB_STATUS } from '../tasks'; export declare const LOAD_JOB_ERROR_CODES: { [TASK_LOAD_JOB_STATE]: Readonly<Record<keyof ServiceHttpErrorCodes, string>>; [TASK_LOAD_JOB_DETAILS]: Readonly<Record<keyof ServiceHttpErrorCodes, string>>; [TASK_LOAD_JOB_EXECUTIONS]: Readonly<Record<keyof ServiceHttpErrorCodes, string>>; }; export declare const LOAD_JOBS_ERROR_CODES: { [TASK_LOAD_JOBS_STATE]: Readonly<Record<keyof ServiceHttpErrorCodes, string>>; }; export declare const UPDATE_JOB_DETAILS_ERROR_CODES: { [TASK_UPDATE_JOB_STATUS]: Readonly<Record<keyof ServiceHttpErrorCodes, string>>; [TASK_UPDATE_JOB_DESCRIPTION]: Readonly<Record<keyof ServiceHttpErrorCodes, string>>; };