UNPKG

paddle-webhooks-express

Version:
78 lines (41 loc) 1.37 kB
function WebhooksManager() { console.log("WebhooksManager.js constructor") /* TODO: implement key for 'p_signature' validation; Text or File */ } WebhooksManager.prototype.high_risk_transaction_created = function(){ } WebhooksManager.prototype.high_risk_transaction_updated = function(){ } WebhooksManager.prototype.locker_processed = function(){ } WebhooksManager.prototype.new_audience_member = function(){ } WebhooksManager.prototype.payment_dispute_closed = function(){ } WebhooksManager.prototype.payment_dispute_created = function(){ } WebhooksManager.prototype.payment_refunded = function(){ } WebhooksManager.prototype.payment_succeeded = function(){ } WebhooksManager.prototype.subscription_cancelled = function(){ } WebhooksManager.prototype.subscription_created = function(){ } WebhooksManager.prototype.subscription_payment_failed = function(){ } WebhooksManager.prototype.subscription_payment_refunded = function(){ } WebhooksManager.prototype.subscription_payment_succeeded = function(){ } WebhooksManager.prototype.subscription_updated = function(){ } WebhooksManager.prototype.transfer_created = function(){ } WebhooksManager.prototype.transfer_paid = function(){ } WebhooksManager.prototype.update_audience_member = function(){ } WebhooksManager.prototype.default = function(){ } module.exports = WebhooksManager