@salesforce/core
    Preparing search index...

    Type Alias Options

    Constructor options for AuthInfo.

    type Options = {
        accessTokenOptions?: AccessTokenOptions;
        clientApps?: {
            accessToken: string;
            clientId: string;
            clientSecret?: string;
            name: string;
            refreshToken: string;
        }[];
        isDevHub?: boolean;
        oauth2?: OAuth2;
        oauth2Options?: JwtOAuth2Config;
        parentUsername?: string;
        username?: string;
    }
    Index
    accessTokenOptions?: AccessTokenOptions

    Options for the access token auth.

    clientApps?: {
        accessToken: string;
        clientId: string;
        clientSecret?: string;
        name: string;
        refreshToken: string;
    }[]
    isDevHub?: boolean
    oauth2?: OAuth2
    oauth2Options?: JwtOAuth2Config

    OAuth options.

    parentUsername?: string

    In certain situations, a new auth info wants to use the connected app information from another parent org. Typically for scratch org or sandbox creation.

    username?: string

    Org signup username.