💳 feat(stripe): add SEPA Direct Debit payment option

- Add sepa_debit to payment_method_types for credit purchases
- Add sepa_debit to subscription checkout sessions
- Handle payment_intent.processing webhook for SEPA status tracking
- Add blueprint article analyzing payment options (Stripe vs LSV+/FinTS)

SEPA offers lower fees (0.8% vs 1.5%+€0.25) for DACH customers.
Payments are confirmed 3-14 days after checkout (bank processing).
This commit is contained in:
Till-JS 2026-02-16 12:05:19 +01:00
parent 0e8f6f134e
commit b5d7524c77
4 changed files with 543 additions and 3 deletions

View file

@ -139,7 +139,7 @@ export class SubscriptionsService {
const session = await this.stripe.checkout.sessions.create({
customer: stripeCustomerId,
mode: 'subscription',
payment_method_types: ['card'],
payment_method_types: ['card', 'sepa_debit'],
line_items: [
{
price: stripePriceId,