@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 (13 loc) • 587 B
text/typescript
/** The details of a UI modification's context, which define where to activate the UI modification. */
export interface UiModificationContextDetails {
/** The ID of the UI modification context. */
id?: string;
/** Whether a context is available. For example, when a project is deleted the context becomes unavailable. */
isAvailable?: boolean;
/** The issue type ID of the context. */
issueTypeId: string;
/** The project ID of the context. */
projectId: string;
/** The view type of the context. Only `GIC` (Global Issue Create) is supported. */
viewType: string;
}