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.

17 lines (16 loc) 791 B
export interface GetEditIssueMeta { /** The ID or key of the issue. */ issueIdOrKey: string; /** * Whether hidden fields are returned. Available to Connect app users with _Administer Jira_ [global * permission](https://confluence.atlassian.com/x/x4dKLg) and Forge apps acting on behalf of users with _Administer * Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg). */ overrideScreenSecurity?: boolean; /** * Whether non-editable fields are returned. Available to Connect app users with _Administer Jira_ [global * permission](https://confluence.atlassian.com/x/x4dKLg) and Forge apps acting on behalf of users with _Administer * Jira_ [global permission](https://confluence.atlassian.com/x/x4dKLg). */ overrideEditableFlag?: boolean; }