({
customerId,
}: {
customerId: string;
})
| 34 | } |
| 35 | |
| 36 | export async function createPortal({ |
| 37 | customerId, |
| 38 | }: { |
| 39 | customerId: string; |
| 40 | }) { |
| 41 | return polar.customerSessions.create({ |
| 42 | customerId, |
| 43 | }); |
| 44 | } |
| 45 | |
| 46 | export async function createCheckout({ |
| 47 | productId, |
no outgoing calls
no test coverage detected