@auth0/auth0-acul-js - v1.0.0
    Preparing search index...

    Interface MfaWebAuthnRoamingEnrollmentMembers

    Interface defining the available methods and properties for the mfa-webauthn-roaming-enrollment screen.

    interface MfaWebAuthnRoamingEnrollmentMembers {
        branding: Screens.BrandingMembers;
        client: Screens.ClientMembers;
        organization: Screens.OrganizationMembers;
        prompt: Screens.PromptMembers;
        screen: Screens.ScreenMembersOnMfaWebAuthnRoamingEnrollment;
        tenant: Screens.TenantMembers;
        transaction: Screens.TransactionMembers;
        untrustedData: Screens.UntrustedDataMembers;
        user: Screens.UserMembers;
        changeLanguage(options: Screens.LanguageChangeOptions): Promise<void>;
        enroll(payload: Screens.CustomOptions): Promise<void>;
        getErrors(): Screens.Error[];
        showError(payload: Screens.ShowErrorOptions): Promise<void>;
        tryAnotherMethod(
            payload?: Screens.MfaWebAuthnRoamingEnrollmentTryAnotherMethodOptions,
        ): Promise<void>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    • Initiates the WebAuthn credential creation and submits the result to the server. This corresponds to the user interacting with the FIDO Security Keys prompt.

      Parameters

      Returns Promise<void>

      import MfaWebAuthnRoamingEnrollment from '@auth0/auth0-acul-js/mfa-webauthn-roaming-enrollment';

      const webauthnEnrollment = new MfaWebAuthnRoamingEnrollment();
      try {
      // This will trigger the browser's WebAuthn prompt
      const credential = await navigator.credentials.create({ publicKey: webauthnEnrollment.screen.data.passkey.public_key });
      // You would typically serialize the credential response here
      const response = JSON.stringify(credential);
      await webauthnEnrollment.enroll({ response });
      } catch (error) {
      console.error('WebAuthn enrollment failed:', error);
      // Handle the error, e.g., show an error message to the user or submit the error details
      // await webauthnEnrollment.showError({ error: { name: error.name, message: error.message } });
      }
    • Submits details about a WebAuthn browser error to the server. This is used when the browser's WebAuthn API encounters an error.

      Parameters

      Returns Promise<void>

      import MfaWebAuthnRoamingEnrollment from '@auth0/auth0-acul-js/mfa-webauthn-roaming-enrollment';

      const webauthnEnrollment = new MfaWebAuthnRoamingEnrollment();
      // Example error handler for the browser's WebAuthn API call
      const handleError = async (error: any) => {
      console.error('WebAuthn error:', error);
      await webauthnEnrollment.showError({
      error: {
      name: error.name,
      message: error.message,
      // Include other relevant error properties if available
      },
      });
      };
      // ... use handleError in your WebAuthn API call's catch block