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.

25 lines (24 loc) 1.05 kB
export interface GetIssuesWithoutEpic { /** * The starting index of the returned issues. Base index: 0. See the 'Pagination' section at the top of this page for * more details. */ startAt?: number; /** * The maximum number of issues to return per page. See the 'Pagination' section at the top of this page for more * details. Note, the total number of issues returned is limited by the property 'jira.search.views.default.max' in * your Jira instance. If you exceed this limit, your results will be truncated. */ maxResults?: number; /** * Filters results using a JQL query. If you define an order in your JQL query, it will override the default order of * the returned issues. */ jql?: string; /** Specifies whether to validate the JQL query or not. Default: true. */ validateQuery?: boolean; /** The list of fields to return for each issue. By default, all navigable and Agile fields are returned. */ fields?: string[]; /** A comma-separated list of the parameters to expand. */ expand?: string; }