Merge pull request #25161 from overleaf/mf-stripe-webhook

[web] Implement stripe webhook for `customer.subscription.created` event type

GitOrigin-RevId: f32e7607ddf900211efbe487bcd1f09172100178
This commit is contained in:
M Fahru
2025-05-06 09:49:37 -07:00
committed by Copybot
parent 12939b91b3
commit 6c3cc794a4

View File

@@ -0,0 +1,13 @@
type CustomerSubscriptionCreated = {
type: 'customer.subscription.created'
data: {
object: {
id: string
metadata: {
adminUserId?: string
}
}
}
}
export type WebhookEvent = CustomerSubscriptionCreated