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.

17 lines (15 loc) 597 B
import type { ProjectCreateResourceIdentifier } from './projectCreateResourceIdentifier'; /** * The payload for creating a workflow scheme. See * https://www.atlassian.com/software/jira/guides/workflows/overview#what-is-a-jira-workflow-scheme */ export interface WorkflowSchemePayload { defaultWorkflow?: ProjectCreateResourceIdentifier; /** The description of the workflow scheme */ description?: string; /** Association between issuetypes and workflows */ explicitMappings?: {}; /** The name of the workflow scheme */ name?: string; pcri?: ProjectCreateResourceIdentifier; }