saas-subscription-helper
Version:
A helper package for integrating Stripe Payment Links with Supabase in SaaS applications.
13 lines (12 loc) • 397 B
JavaScript
const handleWebhooks = require('./handleWebhooks');
const cancelSubscription = require('./cancelSubscription');
const changePlan = require('./changePlan');
const fetchSubscription = require('./fetchSubscription');
const syncSubscription = require('./syncSubscription');
module.exports = {
handleWebhooks,
cancelSubscription,
changePlan,
fetchSubscription,
syncSubscription
};