From fd9be80bb36c77bb6dff78196b1d0409fe11f3fa Mon Sep 17 00:00:00 2001 From: Liangjun Song <146005915+adai26@users.noreply.github.com> Date: Thu, 9 Oct 2025 08:34:16 +0100 Subject: [PATCH] Merge pull request #28781 from overleaf/ls-handle-business-details-on-backend Handle Stripe business details on backend GitOrigin-RevId: 32608ba4913da493a09341b8880cd5b639066462 --- services/web/types/subscription/dashboard/subscription.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/services/web/types/subscription/dashboard/subscription.ts b/services/web/types/subscription/dashboard/subscription.ts index e4e6da36bd..b1d03a46dd 100644 --- a/services/web/types/subscription/dashboard/subscription.ts +++ b/services/web/types/subscription/dashboard/subscription.ts @@ -142,3 +142,10 @@ export type SubscriptionBillingAddress = { postal_code: string country: string } + +export type StripeBusinessDetails = { + name?: string + taxIdType?: string + taxIdValue?: string + isTaxExempt?: boolean +}