| 596 | }; |
| 597 | |
| 598 | const resetPassword = async params => { |
| 599 | const recipientId = getRecipientId(params); |
| 600 | const client = await createClient({ |
| 601 | recipientId |
| 602 | }); |
| 603 | const res = await client.resetPassword(params); |
| 604 | return res.status === 200 |
| 605 | ? res |
| 606 | : await checkExpiredSession(res, resetPassword, params); |
| 607 | }; |
| 608 | |
| 609 | const setAddress = async params => { |
| 610 | const client = await createClient({ recipientId: params.recipientId }); |
nothing calls this directly
no test coverage detected