@hookflo/tern
Version:
A robust, scalable webhook verification framework supporting multiple platforms and signature algorithms
17 lines (16 loc) • 735 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebhookPlatformKeys = void 0;
var WebhookPlatformKeys;
(function (WebhookPlatformKeys) {
WebhookPlatformKeys["GitHub"] = "github";
WebhookPlatformKeys["Stripe"] = "stripe";
WebhookPlatformKeys["Clerk"] = "clerk";
WebhookPlatformKeys["DodoPayments"] = "dodopayments";
WebhookPlatformKeys["Shopify"] = "shopify";
WebhookPlatformKeys["Vercel"] = "vercel";
WebhookPlatformKeys["Polar"] = "polar";
WebhookPlatformKeys["Supabase"] = "supabase";
WebhookPlatformKeys["Custom"] = "custom";
WebhookPlatformKeys["Unknown"] = "unknown";
})(WebhookPlatformKeys || (exports.WebhookPlatformKeys = WebhookPlatformKeys = {}));