clean-shoe-39892
07/05/2024, 10:13 AMUpdateRegistrationFlowWithProfileMethod
registration flow where we take the email first, and I cannot use FrontendApi.updateRegistrationFlow
since the body has following type:
export type UpdateRegistrationFlowBody = {
method: 'code';
} & UpdateRegistrationFlowWithCodeMethod | {
method: 'oidc';
} & UpdateRegistrationFlowWithOidcMethod | {
method: 'passKey';
} & UpdateRegistrationFlowWithPasskeyMethod | {
method: 'password';
} & UpdateRegistrationFlowWithPasswordMethod | {
method: 'webauthn';
} & UpdateRegistrationFlowWithWebAuthnMethod;
Am I missing something or the SDK needs to be updated to accept UpdateRegistrationFlowWithProfileMethod
in registration flow body?