diff --git a/services/web/types/stripe/webhook-event.ts b/services/web/types/stripe/webhook-event.ts index 6be2ea1e95..648f26b8dc 100644 --- a/services/web/types/stripe/webhook-event.ts +++ b/services/web/types/stripe/webhook-event.ts @@ -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