@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.
22 lines (21 loc) • 772 B
text/typescript
/** Details about the Jira instance. */
export interface ServerInformation {
/** The base URL of the Jira instance. */
baseUrl?: string;
/** The timestamp when the Jira version was built. */
buildDate?: string;
/** The build number of the Jira version. */
buildNumber?: number;
/** The type of server deployment. This is always returned as _Cloud_. */
deploymentType?: string;
/** The unique identifier of the Jira version. */
scmInfo?: string;
/** The time in Jira when this request was responded to. */
serverTime?: string;
/** The name of the Jira instance. */
serverTitle?: string;
/** The version of Jira. */
version?: string;
/** The major, minor, and revision version numbers of the Jira version. */
versionNumbers?: number[];
}