Hey All. Trying to update my Kratos version to the...
# ory-selfhosting
c
Hey All. Trying to update my Kratos version to the latest and utilize new
UpdateRegistrationFlowWithProfileMethod
registration flow where we take the email first, and I cannot use
FrontendApi.updateRegistrationFlow
since the body has following type:
Copy code
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?