@auth0/auth0-angular
    Preparing search index...

    Interface ObservableMyAccountApiClient

    Observable-based MyAccount API client exposed by AuthService.myAccount.

    This is the Angular counterpart of MyAccountApiClient from @auth0/auth0-spa-js. All methods return Observable instead of Promise.

    interface ObservableMyAccountApiClient {
        deleteAuthenticationMethod(id: string): Observable<void>;
        enrollmentChallenge(
            options: EnrollmentChallengeOptions,
        ): Observable<EnrollmentChallengeResponse>;
        enrollmentVerify(
            options: EnrollmentVerifyOptions,
        ): Observable<AuthenticationMethod>;
        getAuthenticationMethod(id: string): Observable<AuthenticationMethod>;
        getAuthenticationMethods(
            type?: AuthenticationMethodType,
        ): Observable<AuthenticationMethod[]>;
        getFactors(): Observable<Factor[]>;
        updateAuthenticationMethod(
            id: string,
            data: UpdateAuthenticationMethodRequest,
        ): Observable<AuthenticationMethod>;
    }
    Index

    Methods