@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.
10 lines (9 loc) • 310 B
text/typescript
/** The list of required status mappings by workflow. */
export interface RequiredMappingByWorkflows {
/** The ID of the source workflow. */
sourceWorkflowId?: string;
/** The status IDs requiring mapping. */
statusIds?: string[];
/** The ID of the target workflow. */
targetWorkflowId?: string;
}