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.

10 lines (8 loc) 296 B
import type { StatusMapping } from '../models'; export interface PublishDraftWorkflowScheme { /** The ID of the workflow scheme that the draft belongs to. */ id: number; /** Whether the request only performs a validation. */ validateOnly?: boolean; statusMappings?: StatusMapping[]; }