@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.
13 lines (11 loc) • 403 B
text/typescript
import type { WebhookDetails } from './webhookDetails';
/** Details of webhooks to register. */
export interface WebhookRegistrationDetails {
/**
* The URL that specifies where to send the webhooks. This URL must use the same base URL as the Connect app. Only a
* single URL per app is allowed to be registered.
*/
url: string;
/** A list of webhooks. */
webhooks: WebhookDetails[];
}