Caution
const stripe = require('stripe')('your-secret-key');
const paymentIntent = await stripe.paymentIntents.create({
amount: 1000, // Montant en cents
currency: 'eur',
capture_method: 'manual', // Pour une pré-autorisation
payment_method_types: ['card'],
});