We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tbreeding/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
hasCompleteChangeLog.ts•476 B
/**
* Changelog completeness verification utility
*
* This file provides functionality to determine whether a Jira issue's changelog
* is complete and has all the necessary historical data. It helps ensure that
* analysis based on changelog data is accurate and comprehensive.
*/
import type { IssueChangeLog } from '../../types/issue.types'
export function hasCompleteChangeLog(changeLog: IssueChangeLog): boolean {
return changeLog.total === changeLog.maxResults
}