@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) • 674 B
text/typescript
import type { WorkflowAssociationStatusMapping } from './workflowAssociationStatusMapping';
/**
* Overrides, for the selected issue types, any status mappings provided in `statusMappingsByWorkflows`. Status mappings
* are required when the new workflow for an issue type doesn't contain all statuses that the old workflow has. Status
* mappings can be provided by a combination of `statusMappingsByWorkflows` and `statusMappingsByIssueTypeOverride`.
*/
export interface MappingsByIssueTypeOverride {
/** The ID of the issue type for this mapping. */
issueTypeId: string;
/** The list of status mappings. */
statusMappings: WorkflowAssociationStatusMapping[];
}