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

    Class Signup

    Hierarchy

    • BaseContext
      • Signup

    Implements

    Index

    Constructors

    Properties

    screenIdentifier: string = ScreenIds.SIGNUP

    Methods

    • Retrieves the array of transaction errors from the context, or an empty array if none exist.

      Returns Screens.Error[]

      An array of error objects from the transaction context.

    • Utility Feature

      Returns the list of enabled identifiers for the signup form, marking each as required or optional based on transaction config.

      Returns Screens.Identifier[] | null

      Array of identifier objects (e.g., email, phone, username).

      const signup = new Signup();
      const identifiers = signup.getSignupIdentifiers();
      // [{ type: 'email', required: true }, { type: 'username', required: false }]