({ newDeviceData, jwt })
| 411 | }; |
| 412 | |
| 413 | const linkAuth = async ({ newDeviceData, jwt }) => { |
| 414 | const recipientId = getRecipientId(newDeviceData); |
| 415 | const client = await createClient({ recipientId, optionalToken: jwt }); |
| 416 | return await client.linkAuth(newDeviceData); |
| 417 | }; |
| 418 | |
| 419 | const linkCancel = async ({ newDeviceData, jwt }) => { |
| 420 | const recipientId = getRecipientId(newDeviceData); |
nothing calls this directly
no test coverage detected