@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) • 775 B
text/typescript
import type { JiraExpressionEvalUsingEnhancedSearchRequest } from '../models';
export interface EvaluateJiraExpressionUsingEnhancedSearch extends JiraExpressionEvalUsingEnhancedSearchRequest {
/**
* Use [expand](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#expansion) to include additional
* information in the response. This parameter accepts `meta.complexity` that returns information about the expression
* complexity. For example, the number of expensive operations used by the expression and how close the expression is
* to reaching the [complexity
* limit](https://developer.atlassian.com/cloud/jira/platform/jira-expressions/#restrictions). Useful when designing
* and debugging your expressions.
*/
expand?: string;
}