/** * Webhook Notification System * Tracks all webhook activity with direction (incoming/outgoing) and detailed event information */ export type WebhookDirection = 'INCOMING' | 'OUTGOING'; export interface WebhookNotificationOptions { direction: WebhookDirection; eventType: string; endpoint?: string; method?: string; issueKey?: string; projectKey?: string; summary?: string; details?: Record; status?: 'success' | 'error' | 'warning'; error?: string; responseTime?: number; payloadSize?: number; } /** * Create a webhook notification with direction and details */ export declare function notifyWebhookEvent(options: WebhookNotificationOptions): Promise; /** * Notify incoming webhook event */ export declare function notifyIncomingWebhook(options: Omit): Promise; /** * Notify outgoing webhook event (e.g., API calls to Jira) */ export declare function notifyOutgoingWebhook(options: Omit): Promise; //# sourceMappingURL=webhook-notifications.d.ts.map