'webauthn-platform' not included in MfaEnrollFactorType in mfa-factors library

I have been reviewing the ACUL samples repo and noticed after drilling down into the handleEnroll call in useMFABeginEnrollOptionsManager hook that the payload.action must be of type MfaEnrollFactorType which does not include ‘webauthn-platform’. I am looking to have ACUL enroll device biometrics and I would need ‘webauthn-platform’ option added to do so. Is there a reason ‘webauthn-platform’ was added to MfaLoginFactorType but not MFAEnrollFactorType? Can the nested enroll call handle ‘webauthn-platform’ correctly if I were to change the implementation of this handleEnroll call to account for this missing value?

After looking closer at the handleEnroll call, it doesn’t look like I have the flexibility to change the handleEnroll call to allow ‘webauthn-platform’ either since the @auth0/auth0-acul-react/mfa-begin-enroll-options enroll function expects a MFAEnrollFactorType. I also noticed that my IDE is pushing me towards a mock implementation of enroll as well so maybe this hook is not functionally complete yet? Just looking to understand, thanks!!