@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
14 lines (12 loc) • 554 B
text/typescript
import type { ConnectWorkflowTransitionRule } from './connectWorkflowTransitionRule';
import type { WorkflowId } from './workflowId';
/** A workflow with transition rules. */
export interface WorkflowTransitionRules {
workflowId: WorkflowId;
/** The list of post functions within the workflow. */
postFunctions: ConnectWorkflowTransitionRule[];
/** The list of conditions within the workflow. */
conditions: ConnectWorkflowTransitionRule[];
/** The list of validators within the workflow. */
validators: ConnectWorkflowTransitionRule[];
}