({ newDeviceData, jwt })
| 417 | }; |
| 418 | |
| 419 | const linkCancel = async ({ newDeviceData, jwt }) => { |
| 420 | const recipientId = getRecipientId(newDeviceData); |
| 421 | const client = await createClient({ recipientId, optionalToken: jwt }); |
| 422 | return await client.linkCancel(newDeviceData); |
| 423 | }; |
| 424 | |
| 425 | const linkBegin = async ({ username, domain }) => { |
| 426 | const data = { |
nothing calls this directly
no test coverage detected