@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.
16 lines (14 loc) • 627 B
text/typescript
import type { CustomFieldReplacement } from '../models';
export interface DeleteAndReplaceVersion {
/** The ID of the version. */
id: string;
/** The ID of the version to update `fixVersion` to when the field contains the deleted version. */
moveFixIssuesTo?: number;
/** The ID of the version to update `affectedVersion` to when the field contains the deleted version. */
moveAffectedIssuesTo?: number;
/**
* An array of custom field IDs (`customFieldId`) and version IDs (`moveTo`) to update when the fields contain the
* deleted version.
*/
customFieldReplacementList?: CustomFieldReplacement[];
}