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.

12 lines (11 loc) 386 B
/** Request bean for bulk changelog retrieval */ export interface BulkChangelogRequest { /** List of field IDs to filter changelogs */ fieldIds?: string[]; /** List of issue IDs/keys to fetch changelogs for */ issueIdsOrKeys: string[]; /** The maximum number of items to return per page */ maxResults?: number; /** The cursor for pagination */ nextPageToken?: string; }