@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.
12 lines (10 loc) • 433 B
text/typescript
import type { WorkflowTransitionRules } from './workflowTransitionRules';
/** Details of workflow transition rules. */
export interface WorkflowRulesSearchDetails {
/** The workflow ID. */
workflowEntityId?: string;
/** List of workflow rule IDs that do not belong to the workflow or can not be found. */
invalidRules?: string[];
/** List of valid workflow transition rules. */
validRules?: WorkflowTransitionRules[];
}