UNPKG

@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.

15 lines (14 loc) 631 B
/** Details about the mapping between issue types and a workflow. */ export interface IssueTypesWorkflowMapping { /** The name of the workflow. Optional if updating the workflow-issue types mapping. */ workflow?: string; /** The list of issue type IDs. */ issueTypes?: string[]; /** Whether the workflow is the default workflow for the workflow scheme. */ defaultMapping?: boolean; /** * Whether a draft workflow scheme is created or updated when updating an active workflow scheme. The draft is updated * with the new workflow-issue types mapping. Defaults to `false`. */ updateDraftIfNeeded?: boolean; }