Hierarchy

  • URL
    • SfdcUrl

Constructors

Properties

PRODUCTION: "https://login.salesforce.com" = 'https://login.salesforce.com'
SANDBOX: "https://test.salesforce.com" = 'https://test.salesforce.com'

Salesforce URLs

Methods

  • Tests whether this url has the lightning domain extension This method that performs the dns lookup of the host. If the lookup fails the internal polling (1 second), client will try again until timeout If SFDX_DOMAIN_RETRY environment variable is set (number) it overrides the default timeout duration (240 seconds)

    Returns Promise<true>

    The resolved ip address or never

    Throws

    SfError If can't resolve DNS.

  • Returns the appropriate jwt audience url for this url Use SFDX_AUDIENCE_URL env var to override the audience url

    Parameters

    • Optional createdOrgInstance: string

      The Salesforce instance the org was created on. e.g. cs42

    Returns Promise<string>

    The audience url

  • Tests whether this url is an internal Salesforce domain

    Returns boolean

    true if this is an internal domain

  • Test whether this url represents a lightning domain

    Returns boolean

    true if this domain is a lightning domain

  • Tests whether this url runs on a local machine

    Returns boolean

    true if this is a local machine

  • Tests whether this url contains a Salesforce owned domain

    Returns boolean

    true if this is a salesforce domain

  • Method that performs the dns lookup of the host. If the lookup fails the internal polling (1 second), client will try again until timeout If SFDX_DOMAIN_RETRY environment variable is set (number) it overrides the default timeout duration (240 seconds)

    Returns Promise<string>

    the resolved ip address.

    Throws

    SfError If can't resolve DNS.