@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.
11 lines (9 loc) • 376 B
text/typescript
import type { WorkflowStatusUpdate } from './workflowStatusUpdate';
import type { WorkflowUpdate } from './workflowUpdate';
/** The update workflows payload. */
export interface WorkflowUpdateRequest {
/** The statuses to associate with the workflows. */
statuses: WorkflowStatusUpdate[];
/** The details of the workflows to update. */
workflows: WorkflowUpdate[];
}