Auth0 Universal Components
    Preparing search index...

    Interface CoreClientInterface

    interface CoreClientInterface {
        auth: AuthDetails;
        ensureScopes: (
            requiredScopes: string,
            audiencePath: string,
        ) => Promise<void>;
        getMyAccountApiClient: () => MyAccountClient;
        getMyOrganizationApiClient: () => MyOrganizationClient;
        getToken: (
            scope: string,
            audiencePath: string,
            ignoreCache?: boolean,
        ) => Promise<string | undefined>;
        i18nService: I18nServiceInterface;
        isProxyMode: () => boolean;
        myAccountApiClient: MyAccountClient | undefined;
        myOrganizationApiClient: MyOrganizationClient | undefined;
    }

    Hierarchy

    • BaseCoreClientInterface
      • CoreClientInterface
    Index

    Properties

    ensureScopes: (requiredScopes: string, audiencePath: string) => Promise<void>
    getMyAccountApiClient: () => MyAccountClient
    getMyOrganizationApiClient: () => MyOrganizationClient
    getToken: (
        scope: string,
        audiencePath: string,
        ignoreCache?: boolean,
    ) => Promise<string | undefined>
    isProxyMode: () => boolean
    myAccountApiClient: MyAccountClient | undefined
    myOrganizationApiClient: MyOrganizationClient | undefined