({ sessionId }: { sessionId: string })
| 59 | } |
| 60 | |
| 61 | function retrieveSession({ sessionId }: { sessionId: string }) { |
| 62 | return stripeInstance.checkout.sessions.retrieve(sessionId, { |
| 63 | expand: ['setup_intent', 'setup_intent.payment_method'], |
| 64 | }); |
| 65 | } |
| 66 | |
| 67 | // review below methods |
| 68 | // add teamId |
no outgoing calls
no test coverage detected