mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 20:21:24 +02:00
💳 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:
parent
0e8f6f134e
commit
b5d7524c77
4 changed files with 543 additions and 3 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue