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.

13 lines (11 loc) 454 B
import type { WorkflowCreate } from './workflowCreate'; import type { WorkflowScope } from './workflowScope'; import type { WorkflowStatusUpdate } from './workflowStatusUpdate'; /** The create workflows payload. */ export interface WorkflowCreateRequest { scope: WorkflowScope; /** The statuses to associate with the workflows. */ statuses: WorkflowStatusUpdate[]; /** The details of the workflows to create. */ workflows: WorkflowCreate[]; }