({ rowId, active, recipientId })
| 182 | }; |
| 183 | |
| 184 | const activateAddress = async ({ rowId, active, recipientId }) => { |
| 185 | const client = await createClient({ recipientId }); |
| 186 | const res = await client.activateAddress(rowId, active); |
| 187 | return res.status === 200 |
| 188 | ? res |
| 189 | : await checkExpiredSession(res, activateAddress, { rowId, active }); |
| 190 | }; |
| 191 | |
| 192 | const acknowledgeEvents = async params => { |
| 193 | const { eventIds, recipientId } = params; |
nothing calls this directly
no test coverage detected