Merge pull request #25288 from overleaf/mf-stripe-webhook-subscription-updated

[web] Handle `customer.subscription.updated` stripe webhook event type

GitOrigin-RevId: 821baee5d5a45b92ee7bce47598a5e3ea5aa95ea
This commit is contained in:
M Fahru
2025-05-06 09:49:51 -07:00
committed by Copybot
parent ed02630a2d
commit 87d687dd8a
+1 -3
View File
@@ -1,4 +1,4 @@
type CustomerSubscriptionCreated = {
export type CustomerSubscriptionWebhookEvent = {
type: 'customer.subscription.created'
data: {
object: {
@@ -9,5 +9,3 @@ type CustomerSubscriptionCreated = {
}
}
}
export type WebhookEvent = CustomerSubscriptionCreated