From 028d4b481fa936c5ea771ceb90c35a7d2abc399a Mon Sep 17 00:00:00 2001 From: M Fahru Date: Thu, 10 Jul 2025 07:58:00 -0700 Subject: [PATCH] Merge pull request #26965 from overleaf/mf-trials-convert-to-regular-should-not-send-subscription-renewed [web] Stop sending any event when trial changes to active for Stripe subscription on `customer.subscription.updated` stripe webhook event type GitOrigin-RevId: 11256878cd2828036aad3130a05ad36d95466199 --- services/web/types/stripe/webhook-event.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/types/stripe/webhook-event.ts b/services/web/types/stripe/webhook-event.ts index c0c182e047..f0a08284ed 100644 --- a/services/web/types/stripe/webhook-event.ts +++ b/services/web/types/stripe/webhook-event.ts @@ -22,6 +22,7 @@ export type CustomerSubscriptionUpdatedWebhookEvent = { }, ] } + status?: Stripe.Subscription.Status } } }