(data: any)
| 23 | } |
| 24 | |
| 25 | function serializePaymentMethod(data: any) { |
| 26 | return { |
| 27 | type: data.type, |
| 28 | card: { |
| 29 | last4: data.card.last4, |
| 30 | }, |
| 31 | }; |
| 32 | } |
| 33 | |
| 34 | export async function index({ communityId }: { communityId: string }) { |
| 35 | const response1 = await stripe.customers.search({ |