UNPKG

hook-engine

Version:

Production-grade webhook engine with comprehensive adapter support, security, reliability, structured logging, and CLI tools.

14 lines (13 loc) 597 B
import stripe from './stripe'; import github from './github'; import discord from './discord'; import shopify from './shopify'; import paypal from './paypal'; import twilio from './twilio'; import sendgrid from './sendgrid'; import generic, { createGenericAdapter } from './generic'; import type { WebhookAdapter } from '../types/adapter'; export declare const adapters: Record<string, WebhookAdapter>; export declare function getAdapter(source: string): WebhookAdapter | undefined; export { createGenericAdapter }; export { stripe, github, discord, shopify, paypal, twilio, sendgrid, generic, };