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.

20 lines (19 loc) 893 B
/** * The JQL specifying the issues available in the evaluated Jira expression under the `issues` context variable. Not all * issues returned by the JQL query are loaded, only those described by the `startAt` and `maxResults` properties. To * determine whether it is necessary to iterate to ensure all the issues returned by the JQL query are evaluated, * inspect `meta.issues.jql.count` in the response. */ export interface JexpJqlIssues { /** The JQL query. */ query?: string; /** The index of the first issue to return from the JQL query. */ startAt?: number; /** * The maximum number of issues to return from the JQL query. Inspect `meta.issues.jql.maxResults` in the response to * ensure the maximum value has not been exceeded. */ maxResults?: number; /** Determines how to validate the JQL query and treat the validation results. */ validation?: string; }