@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.
26 lines (24 loc) • 664 B
text/typescript
import type { WorkflowElementReference } from './workflowElementReference';
/** The details about a workflow validation error. */
export interface WorkflowValidationError {
/** An error code. */
code?: string;
elementReference?: WorkflowElementReference;
/** The validation error level. */
level?: 'WARNING' | 'ERROR' | string;
/** An error message. */
message?: string;
/** The type of element the error or warning references. */
type?:
| 'RULE'
| 'STATUS'
| 'STATUS_LAYOUT'
| 'STATUS_PROPERTY'
| 'WORKFLOW'
| 'TRANSITION'
| 'TRANSITION_PROPERTY'
| 'SCOPE'
| 'STATUS_MAPPING'
| 'TRIGGER'
| string;
}