@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.
24 lines (23 loc) • 1.04 kB
text/typescript
export interface GetVersion {
/** The ID of the version. */
id: string;
/**
* Use [expand](https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/#expansion) to include additional
* information about version in the response. This parameter accepts a comma-separated list. Expand options include:
*
* - `operations` Returns the list of operations available for this version.
* - `issuesstatus` Returns the count of issues in this version for each of the status categories _to do_, _in
* progress_, _done_, and _unmapped_. The _unmapped_ property represents the number of issues with a status other
* than _to do_, _in progress_, and _done_.
* - `driver` Returns the Atlassian account ID of the version driver.
* - `approvers` Returns a list containing the Atlassian account IDs of approvers for this version.
*/
expand?:
| 'operations'
| 'issuesstatus'
| 'driver'
| 'approvers'
| ('operations' | 'issuesstatus' | 'driver' | 'approvers')[]
| string
| string[];
}