Merge pull request #28781 from overleaf/ls-handle-business-details-on-backend

Handle Stripe business details on backend

GitOrigin-RevId: 32608ba4913da493a09341b8880cd5b639066462
This commit is contained in:
Liangjun Song
2025-10-09 08:34:16 +01:00
committed by Copybot
parent 7e3b853fc1
commit fd9be80bb3

View File

@@ -142,3 +142,10 @@ export type SubscriptionBillingAddress = {
postal_code: string
country: string
}
export type StripeBusinessDetails = {
name?: string
taxIdType?: string
taxIdValue?: string
isTaxExempt?: boolean
}