@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.
14 lines (12 loc) • 618 B
text/typescript
import type { JqlQueriesToParse } from '../models';
export interface ParseJqlQueries extends JqlQueriesToParse {
/**
* How to validate the JQL query and treat the validation results. Validation options include:
*
* - `strict` Returns all errors. If validation fails, the query structure is not returned.
* - `warn` Returns all errors. If validation fails but the JQL query is correctly formed, the query structure is
* returned.
* - `none` No validation is performed. If JQL query is correctly formed, the query structure is returned.
*/
validation?: 'strict' | 'warn' | 'none' | string;
}