[web] Handle `customer.subscription.updated` stripe webhook event type GitOrigin-RevId: 821baee5d5a45b92ee7bce47598a5e3ea5aa95ea
@@ -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