Passkeys Authentication
After instantiating the SDK (which is explained here), you’re allowed to use the following methods from auth.passkeys.
signIn()
Parameters
WebauthnSignInParams The parameters for creating an account (email).
Returns
Promise<void>
Example
const auth = await sdk.auth.passkeys.signIn({
email: 'user-email@test.com',
})