From 0b6edf569086098ba5be58fc4990e5065a56d9ce Mon Sep 17 00:00:00 2001 From: Hampus Date: Mon, 24 Aug 2026 23:48:49 +0200 Subject: [PATCH] fix(api): stop exporting the pix refund shortfall constant (#1993) --- fluxer_api/src/api/stripe/services/StripeRefundService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluxer_api/src/api/stripe/services/StripeRefundService.ts b/fluxer_api/src/api/stripe/services/StripeRefundService.ts index 7c6325177..794d5bb6e 100644 --- a/fluxer_api/src/api/stripe/services/StripeRefundService.ts +++ b/fluxer_api/src/api/stripe/services/StripeRefundService.ts @@ -25,7 +25,7 @@ import type {StripeSubscriptionService} from './StripeSubscriptionService'; const MILLISECONDS_PER_DAY = 24 * 60 * 60 * 1000; export const SELF_SERVE_REFUND_WINDOW_DAYS = 3; export const SELF_SERVE_REFUND_COOLDOWN_DAYS = 30; -export const PIX_EXACT_AMOUNT_REFUND_SHORTFALL_CENTS = 1; +const PIX_EXACT_AMOUNT_REFUND_SHORTFALL_CENTS = 1; interface RefundTarget { invoice: Stripe.Invoice;