@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) • 417 B
text/typescript
/** Change the order of issue resolutions. */
export interface ReorderIssueResolutionsRequest {
/** The ID of the resolution. Required if `position` isn't provided. */
after?: string;
/** The list of resolution IDs to be reordered. Cannot contain duplicates nor after ID. */
ids: string[];
/** The position for issue resolutions to be moved to. Required if `after` isn't provided. */
position?: string;
}