@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.
15 lines (13 loc) • 598 B
text/typescript
import type { IssueError } from './issueError';
import type { Issue } from './issue';
/** The list of requested issues & fields. */
export interface BulkIssue {
/**
* When Jira can't return an issue enumerated in a request due to a retriable error or payload constraint, we'll
* return the respective issue ID with a corresponding error message. This list is empty when there are no errors
* Issues which aren't found or that the user doesn't have permission to view won't be returned in this list.
*/
issueErrors?: IssueError[];
/** The list of issues. */
issues?: Issue[];
}