fix: support Stripe subscription items (#20389)

* fix: Implement backwards compatible stripe change to customer.subscription.deleted

* Further handling, including price -> plan change
This commit is contained in:
Alex van Andel
2025-03-26 23:24:38 +00:00
committed by GitHub
parent 6bd11009a8
commit 2ab4e8b40a
@@ -9,10 +9,25 @@ const STRIPE_TEAM_PRODUCT_ID = process.env.STRIPE_TEAM_PRODUCT_ID || "";
const stripeWebhookProductHandler = (handlers: Handlers) => async (data: Data) => {
const subscription = data.object;
// @ts-expect-error - we know subscription.plan.product is defined when unsubscribing
const productId = subscription.plan.product; // prod_xxxxx
const handlerGetter = handlers[productId];
let productId: string | null = null;
// @ts-expect-error - support legacy just in case.
if (subscription.plan) {
// @ts-expect-error - we know subscription.plan.product is defined when unsubscribing
productId = subscription.plan.product; // prod_xxxxx
} else {
const subscriptionItem = subscription.items?.data?.[0];
if (!subscriptionItem) {
throw new Error("Subscription item and plan missing");
}
const product = subscription.items.data[0]?.plan.product;
if (product) {
productId = typeof product === "string" ? product : product.id;
}
}
if (typeof productId !== "string") {
throw new Error(`Unable to determine Product ID from subscription: ${subscription.id}`);
}
const handlerGetter = handlers[productId as any];
if (!handlerGetter) throw new HttpCode(202, `No product handler found for product: ${productId}`);
const handler = (await handlerGetter())?.default;
// auto catch unsupported Stripe products.