From 6dcf25132c8e45a8fc74440d53d3073729229e1f Mon Sep 17 00:00:00 2001 From: "railway-app[bot]" <68434857+railway-app[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 08:40:21 +0000 Subject: [PATCH] fix: update Stripe apiVersion to "2025-08-27.basil" for SDK v18 --- features/integrations/payment/stripe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/integrations/payment/stripe.ts b/features/integrations/payment/stripe.ts index 969f724..010c756 100644 --- a/features/integrations/payment/stripe.ts +++ b/features/integrations/payment/stripe.ts @@ -6,7 +6,7 @@ const getStripeClient = () => { throw new Error("Stripe secret key not configured"); } return new Stripe(stripeKey, { - apiVersion: "2023-10-16", + apiVersion: "2025-08-27.basil", }); };