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.

28 lines (26 loc) 1.11 kB
import type { WorkflowMetadataRestModel } from './workflowMetadataRestModel'; import type { WorkflowScope } from './workflowScope'; import type { DocumentVersion } from './documentVersion'; import type { WorkflowMetadataAndIssueTypeRestModel } from './workflowMetadataAndIssueTypeRestModel'; export interface WorkflowSchemeReadResponse { defaultWorkflow?: WorkflowMetadataRestModel; /** The description of the workflow scheme. */ description?: string; /** The ID of the workflow scheme. */ id: string; /** The name of the workflow scheme. */ name: string; /** * Deprecated. See the [deprecation * notice](https://developer.atlassian.com/cloud/jira/platform/changelog/#CHANGE-2298) for details. * * The IDs of projects using the workflow scheme. */ projectIdsUsingScheme?: string[]; scope: WorkflowScope; /** Indicates if there's an [asynchronous task](#async-operations) for this workflow scheme. */ taskId?: string; version: DocumentVersion; /** Mappings from workflows to issue types. */ workflowsForIssueTypes: WorkflowMetadataAndIssueTypeRestModel[]; }