@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.
17 lines (15 loc) • 592 B
text/typescript
import type { WorkflowId } from './workflowId';
/** Details of any errors encountered while updating workflow transition rules for a workflow. */
export interface WorkflowTransitionRulesUpdateErrorDetails {
/**
* A list of transition rule update errors, indexed by the transition rule ID. Any transition rule that appears here
* wasn't updated.
*/
ruleUpdateErrors: unknown;
/**
* The list of errors that specify why the workflow update failed. The workflow was not updated if the list contains
* any entries.
*/
updateErrors: string[];
workflowId: WorkflowId;
}