(stripeCustomerId: string)
| 34 | }); |
| 35 | } |
| 36 | export const createSetupIntent = async (stripeCustomerId: string) => |
| 37 | stripe.setupIntents.create({ |
| 38 | customer: stripeCustomerId, |
| 39 | usage: "off_session", |
| 40 | automatic_payment_methods: { |
| 41 | enabled: true, |
| 42 | }, |
| 43 | }); |
| 44 | |
| 45 | export const getStripeCustomer = async (stripeCustomerId: string) => |
| 46 | stripe.customers.retrieve(stripeCustomerId); |
no test coverage detected