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.

9 lines (7 loc) 338 B
import type { CustomFieldValueUpdateDetails } from '../models'; export interface UpdateCustomFieldValue extends CustomFieldValueUpdateDetails { /** The ID or key of the custom field. For example, `customfield_10010`. */ fieldIdOrKey: string; /** Whether to generate a changelog for this update. */ generateChangelog?: boolean; }