From 69aa973b92fdc2dae310379e357d370b6bbb4450 Mon Sep 17 00:00:00 2001 From: Kristina <7614497+khjrtbrg@users.noreply.github.com> Date: Mon, 30 Jun 2025 09:59:00 +0200 Subject: [PATCH] Merge pull request #26641 from overleaf/kh-use-stripe-us-client [web] use Stripe US client GitOrigin-RevId: 9b99ba8c7ac900c528526cf7e18fec48761e0091 --- services/web/types/subscription/dashboard/subscription.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/web/types/subscription/dashboard/subscription.ts b/services/web/types/subscription/dashboard/subscription.ts index 120ba16461..694e5b948c 100644 --- a/services/web/types/subscription/dashboard/subscription.ts +++ b/services/web/types/subscription/dashboard/subscription.ts @@ -108,6 +108,10 @@ export type MemberGroupSubscription = Omit & { } type PaymentProviderService = 'stripe-us' | 'stripe-uk' | 'recurly' +export type StripePaymentProviderService = Exclude< + PaymentProviderService, + 'recurly' +> export type PaymentProvider = { service: PaymentProviderService