[web] Implement stripe webhook for `customer.subscription.created` event type GitOrigin-RevId: f32e7607ddf900211efbe487bcd1f09172100178
@@ -0,0 +1,13 @@
+type CustomerSubscriptionCreated = {
+ type: 'customer.subscription.created'
+ data: {
+ object: {
+ id: string
+ metadata: {
+ adminUserId?: string
+ }
+}
+
+export type WebhookEvent = CustomerSubscriptionCreated