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.

16 lines (14 loc) 559 B
import type { ChangeDetails } from './changeDetails'; import type { HistoryMetadata } from './historyMetadata'; import type { UserDetails } from './userDetails'; /** A log of changes made to issue fields. Changelogs related to workflow associations are currently being deprecated. */ export interface Changelog { author?: UserDetails; /** The date on which the change took place. */ created?: string; historyMetadata?: HistoryMetadata; /** The ID of the changelog. */ id?: string; /** The list of items changed. */ items?: ChangeDetails[]; }