@arcgis/workflow-manager
Version:
ArcGIS Workflow Manager JavaScript API
22 lines (21 loc) • 631 B
TypeScript
export declare enum JobActionStepStatus {
Success = "Success",
NoActiveStep = "NoActiveStep",
AlreadyExecuting = "AlreadyExecuting",
AssignedToDifferentUser = "AssignedToDifferentUser",
JobClosed = "JobClosed",
StepNotCurrent = "StepNotCurrent",
NoStartedStep = "NoStartedStep",
NoMatchingPaths = "NoMatchingPaths",
NotRunning = "NotRunning",
Held = "Held"
}
export interface JobActionResponse {
success: boolean;
stepResponses: JobActionStepResponse[];
}
export interface JobActionStepResponse {
stepId: string;
status: JobActionStepStatus;
statusDescription: string;
}