diff --git a/classes/config_authInfoConfig.AuthInfoConfig.html b/classes/config_authInfoConfig.AuthInfoConfig.html index 4a8c8b4b6..21dfb0847 100644 --- a/classes/config_authInfoConfig.AuthInfoConfig.html +++ b/classes/config_authInfoConfig.AuthInfoConfig.html @@ -2,7 +2,7 @@ in the global sfdx directory (~/.sfdx).

const authInfo = await AuthInfoConfig.create(AuthInfoConfig.getOptions(username));
 
-

Hierarchy (view full)

Methods

Hierarchy (view full)

Methods

access accessSync clear entries @@ -40,86 +40,86 @@ by perm.

Parameters

Returns Promise<boolean>

  • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

Returns Promise<boolean>

  • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

    -

    Returns Promise<boolean>

  • Invokes actionFn once for each key-value pair present in the config object.

    +

Returns boolean

Returns void

Returns AuthFields[K]

  • Type Parameters

    • V = AnyJson

    Parameters

    • key: string
    • Optional decrypt: boolean

    Returns V

  • Returns (keyof AuthFields)[]

    Returns Promise<AuthFields>

    Returns AuthFields

    Returns void

    Returns void

    Returns boolean

    Returns boolean

    Returns void

    Returns ConfigFile.Options

    Returns ConfigFile.Options

    Returns Promise<string>

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/config_config.Config.html b/classes/config_config.Config.html index 49bb1aaab..2fa04faa6 100644 --- a/classes/config_config.Config.html +++ b/classes/config_config.Config.html @@ -4,7 +4,7 @@
    const localConfig = await Config.create();
    localConfig.set('target-org', 'username@company.org');
    await localConfig.write();

    https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_cli_config_values.htm

    -

    Hierarchy (view full)

    Constructors

    Hierarchy (view full)

    Constructors

    Methods

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Constructors

    Methods

    Returns Promise<boolean>

    Returns boolean

    Returns void

    Returns Optional<AnyJson>

  • Type Parameters

    • V = AnyJson

    Parameters

    • key: string
    • Optional decrypt: boolean

    Returns V

  • Returns string[]

    Returns ConfigPropertyMeta

    Returns ConfigProperties

    Returns ConfigProperties

    Returns void

    Returns boolean

    Returns boolean

    Returns void

    Returns ConfigProperties

    Returns void

    Returns ConfigFile.Options

    Returns Promise<string>

    Returns string

    \ No newline at end of file +

    Returns Promise<ConfigContents>

    \ No newline at end of file diff --git a/classes/config_configAggregator.ConfigAggregator-1.html b/classes/config_configAggregator.ConfigAggregator-1.html index 95da71591..aec503f48 100644 --- a/classes/config_configAggregator.ConfigAggregator-1.html +++ b/classes/config_configAggregator.ConfigAggregator-1.html @@ -8,7 +8,7 @@

    Use ConfigAggregator.create to instantiate the aggregator.

    const aggregator = await ConfigAggregator.create();
    console.log(aggregator.getPropertyValue('target-org'));
    -

    Hierarchy

    Methods

    Hierarchy

    Methods

    • Get all resolved config property keys, values, locations, and paths.

      > console.log(aggregator.getConfigInfo());
      [
      { key: 'logLevel', val: 'INFO', location: 'Environment', path: '$SF_LOG_LEVEL'}
      { key: 'target-org', val: '<username>', location: 'Local', path: './.sf/config.json'}
      ]
      -

      Returns ConfigInfo[]

    • Get a resolved config property. If a property is deprecated, it will try to use the the new key, if there is a config there.

      Parameters

      • key: string

        The key of the property.

      • throwOnDeprecation: boolean = false

        True, if you want an error throw when reading a deprecated config

        -

      Returns ConfigInfo

    • Gets a resolved config property location.

      +

    Returns ConfigInfo

    Returns Optional<Location>

    Returns Optional<string>

    Returns ConfigPropertyMeta

    Returns Optional<T>

    \ No newline at end of file +

    Returns ConfigInfo

    \ No newline at end of file diff --git a/classes/config_configFile.ConfigFile-1.html b/classes/config_configFile.ConfigFile-1.html index 5755bc4d3..4d2ef7a23 100644 --- a/classes/config_configFile.ConfigFile-1.html +++ b/classes/config_configFile.ConfigFile-1.html @@ -4,7 +4,7 @@ specified.

    class MyConfig extends ConfigFile {
    public static getFileName(): string {
    return 'myConfigFilename.json';
    }
    }
    const myConfig = await MyConfig.create({
    isGlobal: true
    });
    myConfig.set('mykey', 'myvalue');
    await myConfig.write();
    -

    Type Parameters

    Hierarchy (view full)

    Methods

    Type Parameters

    Hierarchy (view full)

    Methods

    access accessSync clear entries @@ -41,84 +41,84 @@ by perm.

    Parameters

    Returns Promise<boolean>

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Returns Promise<boolean>

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      -

      Returns Promise<boolean>

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      -

      Returns boolean

    • Invokes actionFn once for each key-value pair present in the config object.

      +

    Returns boolean

    Returns void

    Returns P[K]

  • Type Parameters

    • V = AnyJson

    Parameters

    • key: string
    • Optional decrypt: boolean

    Returns V

  • Returns Extract<keyof P, string>[]

    Returns Promise<P>

    Returns P

    Returns void

    Returns void

    Returns boolean

    Returns boolean

    Returns void

    Returns ConfigFile.Options

    Returns Promise<string>

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/config_configStore.BaseConfigStore.html b/classes/config_configStore.BaseConfigStore.html index a05cf5951..9fdc27c66 100644 --- a/classes/config_configStore.BaseConfigStore.html +++ b/classes/config_configStore.BaseConfigStore.html @@ -1,7 +1,7 @@ BaseConfigStore | @salesforce/core

    Class BaseConfigStore<T, P>Abstract

    An abstract class that implements all the config management functions but none of the storage functions.

    Note: To see the interface, look in typescripts autocomplete help or the npm package's ConfigStore.d.ts file.

    -

    Type Parameters

    Hierarchy (view full)

    Implements

    Methods

    Type Parameters

    Hierarchy (view full)

    Implements

    Methods

    clear entries forEach get @@ -17,38 +17,38 @@ update values

    Methods

    • Removes all key/value pairs from the config object.

      -

      Returns void

    • Invokes actionFn once for each key-value pair present in the config object.

      +

      Returns void

    • Invokes actionFn once for each key-value pair present in the config object.

      Parameters

      • actionFn: ((key, value) => void)

        The function (key: string, value: ConfigValue) => void to be called for each element.

        -
          • (key, value): void
          • Parameters

            • key: string
            • value: AnyJson

            Returns void

      Returns void

    • Returns the value associated to the key, or undefined if there is none.

      +
        • (key, value): void
        • Parameters

          • key: string
          • value: AnyJson

          Returns void

    Returns void

    • Returns the value associated to the key, or undefined if there is none.

      Type Parameters

      • K extends string

      Parameters

      • key: K

        The key (object property)

      • Optional decrypt: boolean

        If it is an encrypted key, decrypt the value. If the value is an object, a clone will be returned.

        -

      Returns P[K]

    • Type Parameters

      • V = AnyJson

      Parameters

      • key: string
      • Optional decrypt: boolean

      Returns V

    • Returns the entire config contents.

      +

    Returns P[K]

  • Type Parameters

    • V = AnyJson

    Parameters

    • key: string
    • Optional decrypt: boolean

    Returns V

  • Returns Extract<keyof P, string>[]

    Returns void

    Returns void

    Returns boolean

    Returns boolean

    \ No newline at end of file +

    Returns void

    \ No newline at end of file diff --git a/classes/config_envVars.EnvVars.html b/classes/config_envVars.EnvVars.html index 59ed99cdc..061d2495c 100644 --- a/classes/config_envVars.EnvVars.html +++ b/classes/config_envVars.EnvVars.html @@ -1,6 +1,6 @@ -EnvVars | @salesforce/core

    Hierarchy

    • Env
      • EnvVars

    Constructors

    constructor +EnvVars | @salesforce/core

    Hierarchy

    • Env
      • EnvVars

    Constructors

    Methods

    • Type Parameters

      • T

      Parameters

      • property: string
      • prefix: string = ...

      Returns Nullable<T>

    • Parameters

      • property: string
      • prefix: string = ...

      Returns string

    \ No newline at end of file +

    Constructors

    Methods

    • Type Parameters

      • T

      Parameters

      • property: string
      • prefix: string = ...

      Returns Nullable<T>

    • Parameters

      • property: string
      • prefix: string = ...

      Returns string

    \ No newline at end of file diff --git a/classes/config_lwwMap.LWWMap.html b/classes/config_lwwMap.LWWMap.html index 9ef1ac41e..40764d590 100644 --- a/classes/config_lwwMap.LWWMap.html +++ b/classes/config_lwwMap.LWWMap.html @@ -1,4 +1,4 @@ -LWWMap | @salesforce/core

    Type Parameters

    Constructors

    constructor +LWWMap | @salesforce/core

    Type Parameters

    Constructors

    Accessors

    Methods

    delete @@ -6,4 +6,4 @@ has merge set -

    Constructors

    Accessors

    Methods

    \ No newline at end of file +

    Constructors

    Accessors

    Methods

    \ No newline at end of file diff --git a/classes/config_lwwRegister.LWWRegister.html b/classes/config_lwwRegister.LWWRegister.html index 0d422f311..f8e3a805b 100644 --- a/classes/config_lwwRegister.LWWRegister.html +++ b/classes/config_lwwRegister.LWWRegister.html @@ -1,10 +1,10 @@ LWWRegister | @salesforce/core

    a CRDT implementation. Uses timestamps to resolve conflicts when updating the value (last write wins) mostly based on https://jakelazaroff.com/words/an-interactive-intro-to-crdts/

    Type Parameters

    • T

      the type of the value stored in the register

      -

    Constructors

    Constructors

    Properties

    Accessors

    Methods

    Constructors

    Properties

    state: LWWRegisterState<T>

    Accessors

    Methods

    \ No newline at end of file +

    Constructors

    Properties

    state: LWWRegisterState<T>

    Accessors

    Methods

    \ No newline at end of file diff --git a/classes/config_orgUsersConfig.OrgUsersConfig-1.html b/classes/config_orgUsersConfig.OrgUsersConfig-1.html index cce7c367c..81140edc0 100644 --- a/classes/config_orgUsersConfig.OrgUsersConfig-1.html +++ b/classes/config_orgUsersConfig.OrgUsersConfig-1.html @@ -1,5 +1,5 @@ OrgUsersConfig | @salesforce/core

    A config file that stores usernames for an org.

    -

    Hierarchy (view full)

    Methods

    Hierarchy (view full)

    Methods

    access accessSync clear entries @@ -37,86 +37,86 @@ by perm.

    Parameters

    Returns Promise<boolean>

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Returns Promise<boolean>

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      -

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      +

    Returns boolean

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      +

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      Parameters

      • actionFn: ((key, value) => void)

        The function (key: string, value: ConfigValue) => void to be called for each element.

        -
          • (key, value): void
          • Parameters

            • key: string
            • value: AnyJson

            Returns void

      Returns void

    • Returns the value associated to the key, or undefined if there is none.

      +
        • (key, value): void
        • Parameters

          • key: string
          • value: AnyJson

          Returns void

    Returns void

    Returns UserConfig[K]

  • Type Parameters

    Parameters

    Returns V

  • Returns "usernames"[]

    Returns Promise<UserConfig>

    Returns UserConfig

    Returns void

    Returns void

    Returns boolean

    Returns boolean

    Returns void

    Returns ConfigFile.Options

    Returns OrgUsersConfig.Options

    Returns Promise<string>

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/config_sandboxOrgConfig.SandboxOrgConfig-1.html b/classes/config_sandboxOrgConfig.SandboxOrgConfig-1.html index 5ababfd30..05bc46b9e 100644 --- a/classes/config_sandboxOrgConfig.SandboxOrgConfig-1.html +++ b/classes/config_sandboxOrgConfig.SandboxOrgConfig-1.html @@ -1,5 +1,5 @@ SandboxOrgConfig | @salesforce/core

    A config file that stores usernames for an org.

    -

    Hierarchy (view full)

    Methods

    Hierarchy (view full)

    Methods

    access accessSync clear entries @@ -37,86 +37,86 @@ by perm.

    Parameters

    Returns Promise<boolean>

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Returns Promise<boolean>

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      -

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      +

    Returns boolean

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      +

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      Parameters

      • actionFn: ((key, value) => void)

        The function (key: string, value: ConfigValue) => void to be called for each element.

        -
          • (key, value): void
          • Parameters

            • key: string
            • value: AnyJson

            Returns void

      Returns void

    • Returns the value associated to the key, or undefined if there is none.

      +
        • (key, value): void
        • Parameters

          • key: string
          • value: AnyJson

          Returns void

    Returns void

    Returns Optional<AnyJson>

  • Type Parameters

    Parameters

    Returns V

  • Returns string[]

    Returns Promise<ConfigContents>

    Returns ConfigContents

    Returns void

    Returns void

    Returns boolean

    Returns boolean

    Returns void

    Returns ConfigFile.Options

    Returns SandboxOrgConfig.Options

    Returns Promise<string>

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/config_sandboxProcessCache.SandboxRequestCache.html b/classes/config_sandboxProcessCache.SandboxRequestCache.html index 9158dce47..7309c113c 100644 --- a/classes/config_sandboxProcessCache.SandboxRequestCache.html +++ b/classes/config_sandboxProcessCache.SandboxRequestCache.html @@ -1,7 +1,7 @@ SandboxRequestCache | @salesforce/core

    A Time To Live configuration file where each entry is timestamped and removed once the TTL has expired.

    Example

    import { Duration } from '@salesforce/kit';
    const config = await TTLConfig.create({
    isGlobal: false,
    ttl: Duration.days(1)
    });
    -

    Hierarchy (view full)

    Methods

    Hierarchy (view full)

    Methods

    access accessSync clear entries @@ -43,82 +43,82 @@ by perm.

    Parameters

    Returns Promise<boolean>

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Returns Promise<boolean>

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      -

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      +

    Returns boolean

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      +

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      Parameters

      • actionFn: ((key, value) => void)

        The function (key: string, value: ConfigValue) => void to be called for each element.

        -
          • (key, value): void
          • Parameters

            • key: string
            • value: AnyJson

            Returns void

      Returns void

    • Returns the value associated to the key, or undefined if there is none.

      +
        • (key, value): void
        • Parameters

          • key: string
          • value: AnyJson

          Returns void

    Returns void

    Returns Entry<SandboxRequestCacheEntry>

  • Type Parameters

    Parameters

    Returns V

  • Returns string[]

    Returns Promise<Contents<SandboxRequestCacheEntry>>

    Returns Contents<SandboxRequestCacheEntry>

    Returns void

    Returns void

    Returns boolean

    Returns boolean

    Returns void

    Returns Promise<string>

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/config_ttlConfig.TTLConfig-1.html b/classes/config_ttlConfig.TTLConfig-1.html index be7530147..f42402a8c 100644 --- a/classes/config_ttlConfig.TTLConfig-1.html +++ b/classes/config_ttlConfig.TTLConfig-1.html @@ -1,7 +1,7 @@ TTLConfig | @salesforce/core

    A Time To Live configuration file where each entry is timestamped and removed once the TTL has expired.

    Example

    import { Duration } from '@salesforce/kit';
    const config = await TTLConfig.create({
    isGlobal: false,
    ttl: Duration.days(1)
    });
    -

    Type Parameters

    Hierarchy (view full)

    Methods

    Type Parameters

    Hierarchy (view full)

    Methods

    access accessSync clear entries @@ -41,84 +41,84 @@ by perm.

    Parameters

    Returns Promise<boolean>

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Returns Promise<boolean>

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      -

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      +

    Returns boolean

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      +

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      Parameters

      • actionFn: ((key, value) => void)

        The function (key: string, value: ConfigValue) => void to be called for each element.

        -
          • (key, value): void
          • Parameters

            • key: string
            • value: AnyJson

            Returns void

      Returns void

    • Returns the value associated to the key, or undefined if there is none.

      +
        • (key, value): void
        • Parameters

          • key: string
          • value: AnyJson

          Returns void

    Returns void

    Returns Entry<P>

  • Type Parameters

    Parameters

    Returns V

  • Returns string[]

    Returns Promise<Contents<P>>

    Returns Contents<P>

    Returns void

    Returns void

    Returns boolean

    Returns boolean

    Returns void

    Returns ConfigFile.Options

    Returns Promise<string>

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/crypto_crypto.Crypto.html b/classes/crypto_crypto.Crypto.html index 691212813..b24843ddc 100644 --- a/classes/crypto_crypto.Crypto.html +++ b/classes/crypto_crypto.Crypto.html @@ -1,16 +1,16 @@ Crypto | @salesforce/core

    Class for managing encrypting and decrypting private auth information.

    -

    Hierarchy

    • AsyncOptionalCreatable<CryptoOptions>
      • Crypto

    Methods

    Hierarchy

    • AsyncOptionalCreatable<CryptoOptions>
      • Crypto

    Methods

    • Clears the crypto state. This should be called in a finally block.

      -

      Returns void

    • Decrypts text.

      Parameters

      • text: string

        The text to decrypt.

        -

      Returns string

    • Encrypts text. Returns the encrypted string or undefined if no string was passed.

      +

    Returns string

    • Encrypts text. Returns the encrypted string or undefined if no string was passed.

      Parameters

      • text: string

        The text to encrypt.

        -

      Returns string

    • Takes a best guess if the value provided was encrypted by Crypto.encrypt by +

    Returns string

    \ No newline at end of file +
    \ No newline at end of file diff --git a/classes/crypto_keyChainImpl.GenericKeychainAccess.html b/classes/crypto_keyChainImpl.GenericKeychainAccess.html index b40f2a52a..8badd740d 100644 --- a/classes/crypto_keyChainImpl.GenericKeychainAccess.html +++ b/classes/crypto_keyChainImpl.GenericKeychainAccess.html @@ -1,5 +1,5 @@ GenericKeychainAccess | @salesforce/core

    @@ignore

    -

    Implements

    Constructors

    Implements

    Constructors

    Methods

    Constructors

    Methods

    • Parameters

      • opts: ProgramOpts
      • fn: ((error, password?) => void)
          • (error, password?): void
          • Parameters

            • error: Nullable<Error>
            • Optional password: string

            Returns void

      Returns Promise<void>

    • Parameters

      • opts: ProgramOpts
      • fn: ((error, contents?) => void)
          • (error, contents?): void
          • Parameters

            • error: Nullable<Error>
            • Optional contents: SecretContents

            Returns void

      Returns Promise<void>

    \ No newline at end of file +

    Constructors

    Methods

    \ No newline at end of file diff --git a/classes/crypto_secureBuffer.SecureBuffer.html b/classes/crypto_secureBuffer.SecureBuffer.html index bd8276017..4fdeff404 100644 --- a/classes/crypto_secureBuffer.SecureBuffer.html +++ b/classes/crypto_secureBuffer.SecureBuffer.html @@ -1,16 +1,16 @@ SecureBuffer | @salesforce/core

    Used to store and retrieve a sensitive information in memory. This is not meant for at rest encryption.

    const sString: SecureBuffer<string> = new SecureBuffer();
    sString.consume(secretTextBuffer);
    const value: string = sString.value((buffer: Buffer): string => {
    const password: string = buffer.toString('utf8');
    // doSomething with the password
    // returns something of type <T>
    return testReturnValue;
    });
    -

    Type Parameters

    • T

    Constructors

    Type Parameters

    • T

    Constructors

    Methods

    Constructors

    Methods

    • Consumes a buffer of data that's intended to be secret.

      Parameters

      • buffer: Buffer

        Data to encrypt. The input buffer is overwritten with random data after it's encrypted and assigned internally.

        -

      Returns void

    • Invokes a callback with a decrypted version of the buffer.

      +

    Returns void

    • Invokes a callback with a decrypted version of the buffer.

      Parameters

      • cb: DecipherCallback<T>

        The callback containing the decrypted buffer parameter that returns a desired. typed object. It's important to understand that once the callback goes out of scope the buffer parameters is overwritten with random data. Do not make a copy of this buffer and persist it!

        -

      Returns Optional<T>

    \ No newline at end of file +

    Returns Optional<T>

    \ No newline at end of file diff --git a/classes/deviceOauthService.DeviceOauthService.html b/classes/deviceOauthService.DeviceOauthService.html index 9c16afd77..d3d3e96c7 100644 --- a/classes/deviceOauthService.DeviceOauthService.html +++ b/classes/deviceOauthService.DeviceOauthService.html @@ -2,14 +2,14 @@

    Usage:

    const oauthConfig = {
    loginUrl: this.flags.instanceurl,
    clientId: this.flags.clientid,
    };
    const deviceOauthService = await DeviceOauthService.create(oauthConfig);
    const loginData = await deviceOauthService.requestDeviceLogin();
    console.log(loginData);
    const approval = await deviceOauthService.awaitDeviceApproval(loginData);
    const authInfo = await deviceOauthService.authorizeAndSave(approval);
    -

    Hierarchy

    Constructors

    Hierarchy

    • AsyncCreatable<OAuth2Config>
      • DeviceOauthService

    Constructors

    Properties

    GRANT_TYPE: string = 'device'
    RESPONSE_TYPE: string = 'device_code'
    SCOPE: string = 'refresh_token web api'

    Methods

    \ No newline at end of file +

    Constructors

    Properties

    GRANT_TYPE: string = 'device'
    RESPONSE_TYPE: string = 'device_code'
    SCOPE: string = 'refresh_token web api'

    Methods

    \ No newline at end of file diff --git a/classes/global.Global.html b/classes/global.Global.html index 630240c11..3e8421878 100644 --- a/classes/global.Global.html +++ b/classes/global.Global.html @@ -1,5 +1,5 @@ Global | @salesforce/core

    Global constants, methods, and configuration.

    -

    Constructors

    Constructors

    Properties

    SFDX_INTEROPERABILITY: boolean = ...

    Enable interoperability between .sfdx and .sf.

    When @salesforce/core@v2 is deprecated and no longer used, this can be removed.

    -
    SFDX_STATE_FOLDER: ".sfdx" = '.sfdx'

    The global folder in which sfdx state is stored.

    -
    SF_STATE_FOLDER: ".sf" = '.sf'

    The global folder in which sf state is stored.

    -
    STATE_FOLDER: ".sfdx" = Global.SFDX_STATE_FOLDER

    The preferred global folder in which state is stored.

    -

    Accessors

    • get DIR(): string
    • The full system path to the preferred global state folder

      -

      Returns string

    • get SFDX_DIR(): string
    • The full system path to the global sfdx state folder.

      +
    SFDX_STATE_FOLDER: ".sfdx" = '.sfdx'

    The global folder in which sfdx state is stored.

    +
    SF_STATE_FOLDER: ".sf" = '.sf'

    The global folder in which sf state is stored.

    +
    STATE_FOLDER: ".sfdx" = Global.SFDX_STATE_FOLDER

    The preferred global folder in which state is stored.

    +

    Accessors

    • get DIR(): string
    • The full system path to the preferred global state folder

      +

      Returns string

    • get SF_DIR(): string
    • The full system path to the global sf state folder.

      +

      Returns string

    Methods

    Methods

    • Creates a directory within Global.SFDX_DIR, or Global.SFDX_DIR itself if the dirPath param is not provided. This is resolved or rejected when the directory creation operation has completed.

      Parameters

      • Optional dirPath: string

        The directory path to be created within Global.SFDX_DIR.

        -

      Returns Promise<void>

    • Gets the current mode environment variable as a Mode instance.

      +

    Returns Promise<void>

    • Gets the current mode environment variable as a Mode instance.

      console.log(Global.getEnvironmentMode() === Mode.PRODUCTION);
       
      -

      Returns Mode

    \ No newline at end of file +

    Returns Mode

    \ No newline at end of file diff --git a/classes/lifecycleEvents.Lifecycle.html b/classes/lifecycleEvents.Lifecycle.html index f6eb85670..99933e7e1 100644 --- a/classes/lifecycleEvents.Lifecycle.html +++ b/classes/lifecycleEvents.Lifecycle.html @@ -6,7 +6,7 @@ regardless of where in the code that metadata was initiated.

    Example

    // Listen for an event in a plugin hook
    Lifecycle.getInstance().on('deploy-metadata', transformMetadata)

    // Deep in the deploy code, fire the event for all libraries and plugins to hear.
    Lifecycle.getInstance().emit('deploy-metadata', metadataToBeDeployed);

    // if you don't need to await anything
    use `void Lifecycle.getInstance().emit('deploy-metadata', metadataToBeDeployed)` ;
    -

    Properties

    Properties

    telemetryEventName: "telemetry" = 'telemetry'
    warningEventName: "warning" = 'warning'

    Methods

    • Emit a given event, causing all callback functions to be run in the order they were registered

      +

    Properties

    telemetryEventName: "telemetry" = 'telemetry'
    warningEventName: "warning" = 'warning'

    Methods

    Returns Promise<void>

    Returns Promise<void>

    Returns callback[]

    Returns void

    Returns void

    Returns void

    \ No newline at end of file +

    Returns void

    \ No newline at end of file diff --git a/classes/logger_logger.Logger.html b/classes/logger_logger.Logger.html index 2ddc09232..15d6f0415 100644 --- a/classes/logger_logger.Logger.html +++ b/classes/logger_logger.Logger.html @@ -3,7 +3,7 @@
    // Gets the root sfdx logger
    const logger = await Logger.root();

    // Creates a child logger of the root sfdx logger with custom fields applied
    const childLogger = await Logger.child('myRootChild', {tag: 'value'});

    // Creates a custom logger unaffiliated with the root logger
    const myCustomLogger = new Logger('myCustomLogger');

    // Creates a child of a custom logger unaffiliated with the root logger with custom fields applied
    const myCustomChildLogger = myCustomLogger.child('myCustomChild', {tag: 'value'});

    // get a raw pino logger from the root instance of Logger
    // you can use these to avoid constructing another Logger wrapper class and to get better type support
    const logger = Logger.getRawRootLogger().child({name: 'foo', otherProp: 'bar'});
    logger.info({some: 'stuff'}, 'a message');


    // get a raw pino logger from the current instance
    const childLogger = await Logger.child('myRootChild', {tag: 'value'});
    const logger = childLogger.getRawLogger();

    See https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_log_messages.htm

    -

    Constructors

    Constructors

    Properties

    DEFAULT_LEVEL LEVEL_NAMES ROOT_NAME @@ -33,32 +33,32 @@

    Parameters

    • optionsOrName: string | LoggerOptions

      A set of LoggerOptions or name to use with the default options.

      Throws SfError{ name: 'RedundantRootLoggerError' } More than one attempt is made to construct the root Logger.

      -

    Returns Logger

    Properties

    DEFAULT_LEVEL: WARN = LoggerLevel.WARN

    The default LoggerLevel when constructing new Logger instances.

    -
    LEVEL_NAMES: string[] = ...

    A list of all lower case LoggerLevel names.

    +

    Returns Logger

    Properties

    DEFAULT_LEVEL: WARN = LoggerLevel.WARN

    The default LoggerLevel when constructing new Logger instances.

    +
    LEVEL_NAMES: string[] = ...

    A list of all lower case LoggerLevel names.

    See LoggerLevel

    -
    ROOT_NAME: "sf" = 'sf'

    The name of the root sfdx Logger.

    -

    Methods

    ROOT_NAME: "sf" = 'sf'

    The name of the root sfdx Logger.

    +

    Methods

    Returns Logger

    Returns Logger

    Returns Logger

    Returns void

    Returns Logger

    Returns Logger

    Returns Logger

    Returns Logger

    Returns boolean

    Returns Logger

    Returns Logger

    Returns Promise<Logger>

    Returns Logger

    \ No newline at end of file +

    Returns Promise<Logger>

    \ No newline at end of file diff --git a/classes/logger_memoryLogger.MemoryLogger.html b/classes/logger_memoryLogger.MemoryLogger.html index a8f238465..eafeda584 100644 --- a/classes/logger_memoryLogger.MemoryLogger.html +++ b/classes/logger_memoryLogger.MemoryLogger.html @@ -1,5 +1,5 @@ MemoryLogger | @salesforce/core

    Used by test setup to keep UT from writing to disk.

    -

    Hierarchy

    • Writable
      • MemoryLogger

    Constructors

    Hierarchy

    • Writable
      • MemoryLogger

    Constructors

    Properties

    Methods

    Constructors

    Properties

    loggedData: Record<string, unknown>[] = []

    Methods

    • Parameters

      • chunk: Record<string, unknown>
      • encoding: string
      • callback: ((err?) => void)
          • (err?): void
          • Parameters

            • Optional err: Error

            Returns void

      Returns void

    \ No newline at end of file +

    Constructors

    Properties

    loggedData: Record<string, unknown>[] = []

    Methods

    \ No newline at end of file diff --git a/classes/messages.Messages.html b/classes/messages.Messages.html index 6241d2dc3..fea4a8a79 100644 --- a/classes/messages.Messages.html +++ b/classes/messages.Messages.html @@ -26,7 +26,7 @@ do it once) or load the message file the test depends on individually.

    // Create loader functions for all files in the messages directory
    Messages.importMessagesDirectory(__dirname);

    // or, for ESM code
    Messages.importMessagesDirectoryFromMetaUrl(import.meta.url)

    // Now you can use the messages from anywhere in your code or file.
    // If using importMessageDirectory, the bundle name is the file name.
    const messages: Messages = Messages.loadMessages(packageName, bundleName);

    // Messages now contains all the message in the bundleName file.
    messages.getMessage('authInfoCreationError');
    -

    Type Parameters

    Constructors

    Type Parameters

    • T extends string

    Constructors

    Properties

    bundleName locale messages @@ -48,10 +48,10 @@

    Type Parameters

    • T extends string

    Parameters

    • bundleName: string

      The bundle name.

    • locale: string

      The locale.

    • messages: StoredMessageMap

      The messages. Can not be modified once created.

      -

    Returns Messages<T>

    Properties

    bundleName: string

    The bundle name.

    -
    locale: string

    The locale of the messages in this bundle.

    -

    The messages. Can not be modified once created.

    -

    Methods

    • Convenience method to create errors using message labels.

      +

    Returns Messages<T>

    Properties

    bundleName: string

    The bundle name.

    +
    locale: string

    The locale of the messages in this bundle.

    +

    The messages. Can not be modified once created.

    +

    Methods

    Returns SfError<AnyJson>

    Returns StructuredMessage

    Returns StructuredMessage

    Returns string

    Returns string[]

    Returns string[]

    Returns LoaderFunction<string>

    Returns void

    Returns void

    Returns void

    Returns void

    Returns boolean

    Returns Messages<string>

    \ No newline at end of file +

    Returns void

    \ No newline at end of file diff --git a/classes/org_authInfo.AuthInfo-1.html b/classes/org_authInfo.AuthInfo-1.html index 3f51dce0b..911ebf25f 100644 --- a/classes/org_authInfo.AuthInfo-1.html +++ b/classes/org_authInfo.AuthInfo-1.html @@ -6,7 +6,7 @@

    See Salesforce DX Usernames and Orgs

    // Creating a new authentication file.
    const authInfo = await AuthInfo.create({
    username: myAdminUsername,
    oauth2Options: {
    loginUrl, authCode, clientId, clientSecret
    }
    );
    authInfo.save();

    // Creating an authorization info with an access token.
    const authInfo = await AuthInfo.create({
    username: accessToken
    });

    // Using an existing authentication file.
    const authInfo = await AuthInfo.create({
    username: myAdminUsername
    });

    // Using the AuthInfo
    const connection = await Connection.create({ authInfo });
    -

    Hierarchy

    Constructors

    Hierarchy

    Constructors

    Methods

    Constructors

    • Constructor Do not directly construct instances of this class -- use AuthInfo.create instead.

      Parameters

      Returns AuthInfo

    Methods

    • Get the authorization fields.

      +

    Returns AuthInfo

    Methods

    Returns Readonly<AuthFields>

    Returns Promise<void>

    Returns Promise<AuthInfo>

    Returns Promise<void>

    Returns AuthInfo

    Returns string

    Returns Promise<OrgAuthorization[]>

    \ No newline at end of file +
    \ No newline at end of file diff --git a/classes/org_authRemover.AuthRemover.html b/classes/org_authRemover.AuthRemover.html index ede22a99b..79c0a4a6f 100644 --- a/classes/org_authRemover.AuthRemover.html +++ b/classes/org_authRemover.AuthRemover.html @@ -7,7 +7,7 @@
    const remover = await AuthRemover.create();
    const auth = await remover.findAuth(
    example@mycompany.com
    );
    await remover.removeAuth(auth.username);
    -

    Hierarchy

    Constructors

    Hierarchy

    • AsyncOptionalCreatable
      • AuthRemover

    Constructors

    Methods

    findAllAuths findAuth removeAllAuths @@ -16,11 +16,11 @@ New subclass instances must be created with the static create method.

    Parameters

    • Optional options: object

      An options object providing initialization params.

    Returns AuthRemover

    Methods

    • Finds authorization files for username/alias in the global .sfdx folder Throws SfError{ name: 'TargetOrgNotSetError' } if no target-org Throws SfError{ name: 'NamedOrgNotFoundError' } if specified user is not found

      Parameters

      • Optional usernameOrAlias: string

        username or alias of the auth you want to find, defaults to the configured target-org

        -

      Returns Promise<AuthFields>

    • Removes all authentication files and any configs or aliases associated with them

      -

      Returns Promise<void>

    • Removes the authentication and any configs or aliases associated with it

      +

    Returns Promise<AuthFields>

    \ No newline at end of file +

    Returns Promise<void>

    \ No newline at end of file diff --git a/classes/org_connection.Connection-1.html b/classes/org_connection.Connection-1.html index 5fb6e92df..38d1fe93b 100644 --- a/classes/org_connection.Connection-1.html +++ b/classes/org_connection.Connection-1.html @@ -1,7 +1,7 @@ Connection | @salesforce/core

    Handles connections and requests to Salesforce Orgs.

    // Uses latest API version
    const connection = await Connection.create({
    authInfo: await AuthInfo.create({ username: 'myAdminUsername' })
    });
    connection.query('SELECT Name from Account');

    // Use different API version
    connection.setApiVersion("42.0");
    connection.query('SELECT Name from Account');
    -

    Type Parameters

    • S extends Schema = Schema

    Hierarchy

    • Connection<S>
      • Connection

    Accessors

    Type Parameters

    • S extends Schema = Schema

    Hierarchy

    • Connection<S>
      • Connection

    Accessors

    Methods

    Accessors

    Methods

    • Executes a query and auto-fetches (i.e., "queryMore") all results. This is especially +

      Returns Tooling<S>

    Methods

    • Executes a query and auto-fetches (i.e., "queryMore") all results. This is especially useful with large query result sizes, such as over 2000 records. The default maximum fetch size is 10,000 records. Modify this via the options argument.

      Type Parameters

      • T extends Schema = S

      Parameters

      • soql: string

        The SOQL string.

      • queryOptions: Partial<QueryOptions & {
            tooling: boolean;
        }> = ...

        The query options. NOTE: the autoFetch option will always be true.

        -

      Returns Promise<QueryResult<T>>

    • deploy a zipped buffer from the SDRL with REST or SOAP

      +

    Returns Promise<QueryResult<T>>

    • deploy a zipped buffer from the SDRL with REST or SOAP

      Parameters

      • zipInput: Buffer

        data to deploy

      • options: DeployOptionsWithRest

        JSForce deploy options + a boolean for rest

        -

      Returns Promise<DeployResultLocator<AsyncResult & Schema>>

    • Get the API version used for all connection requests.

      -

      Returns string

    • Getter for the username of the Salesforce Org.

      -

      Returns Optional<string>

    • Verify that instance has a reachable DNS entry, otherwise will throw error

      -

      Returns Promise<boolean>

    • Returns true if this connection is using access token auth.

      -

      Returns boolean

    • Normalize a Salesforce url to include a instance information.

      +

    Returns Promise<DeployResultLocator<AsyncResult & Schema>>

    Returns string

    Returns StreamPromise<R>

    Returns void

    Returns Promise<T>

    \ No newline at end of file +

    Returns Promise<Connection<S>>

    \ No newline at end of file diff --git a/classes/org_org.Org-1.html b/classes/org_org.Org-1.html index 19793173f..5a7f59269 100644 --- a/classes/org_org.Org-1.html +++ b/classes/org_org.Org-1.html @@ -6,7 +6,7 @@
    // Email username
    const org1: Org = await Org.create({ aliasOrUsername: 'foo@example.com' });
    // The target-org config property
    const org2: Org = await Org.create();
    // Full Connection
    const org3: Org = await Org.create({
    connection: await Connection.create({
    authInfo: await AuthInfo.create({ username: 'username' })
    })
    });

    See https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_cli_usernames_orgs.htm

    -

    Hierarchy

    Methods

    Hierarchy

    Methods

    addUsername checkScratchOrg cleanLocalOrgData cloneSandbox @@ -50,101 +50,101 @@
    const org: Org = await Org.create({
    connection: await Connection.create({
    authInfo: await AuthInfo.create('foo@example.com')
    })
    });
    const userAuth: AuthInfo = await AuthInfo.create({
    username: 'bar@example.com'
    });
    await org.addUsername(userAuth);

    Parameters

    • auth: string | AuthInfo

      The AuthInfo for the username to add.

      -

    Returns Promise<Org>

    • Check that this org is a scratch org by asking the dev hub if it knows about it.

      +

    Returns Promise<Org>

    • Check that this org is a scratch org by asking the dev hub if it knows about it.

      Throws SfError{ name: 'NotADevHubError' } Not a Dev Hub.

      Throws SfError{ name: 'NoResultsError' } No results.

      Parameters

      • Optional devHubUsernameOrAlias: string

        The username or alias of the dev hub org.

        -

      Returns Promise<Partial<AuthFields>>

    • Clean all data files in the org's data path. Usually /.sfdx/orgs/.

      +

    Returns Promise<Partial<AuthFields>>

    Returns Promise<SandboxProcessObject>

    Returns Promise<void>

    Returns Promise<boolean>

    Returns Connection<Schema>

    Returns Promise<Nullable<SandboxFields>>

    Returns Promise<SandboxProcessObject>

    Returns Promise<SandboxProcessObject>

    Returns Promise<SandboxProcessObject>

    Returns Promise<SandboxProcessObject>

    Returns Promise<SandboxProcessObject>

    Returns Promise<void>

    Returns Promise<Org>

    Returns Promise<SandboxProcessObject>

    Returns Promise<Org>

    Returns Promise<void>

    \ No newline at end of file +

    Returns Promise<undefined | Pick<AuthFields, NAME | NAMESPACE_PREFIX | INSTANCE_NAME | TRIAL_EXPIRATION_DATE | IS_SCRATCH | IS_SANDBOX>>

    \ No newline at end of file diff --git a/classes/org_permissionSetAssignment.PermissionSetAssignment.html b/classes/org_permissionSetAssignment.PermissionSetAssignment.html index bf2727ef2..9c1f19f7e 100644 --- a/classes/org_permissionSetAssignment.PermissionSetAssignment.html +++ b/classes/org_permissionSetAssignment.PermissionSetAssignment.html @@ -1,9 +1,9 @@ PermissionSetAssignment | @salesforce/core

    A class for assigning a Salesforce User to one or more permission sets.

    -

    Methods

    Methods

    Methods

    Returns Promise<PermissionSetAssignmentFields>

    \ No newline at end of file +

    Returns Promise<PermissionSetAssignment>

    \ No newline at end of file diff --git a/classes/org_scratchOrgCache.ScratchOrgCache.html b/classes/org_scratchOrgCache.ScratchOrgCache.html index 030eda66a..39c95324e 100644 --- a/classes/org_scratchOrgCache.ScratchOrgCache.html +++ b/classes/org_scratchOrgCache.ScratchOrgCache.html @@ -1,7 +1,7 @@ ScratchOrgCache | @salesforce/core

    A Time To Live configuration file where each entry is timestamped and removed once the TTL has expired.

    Example

    import { Duration } from '@salesforce/kit';
    const config = await TTLConfig.create({
    isGlobal: false,
    ttl: Duration.days(1)
    });
    -

    Hierarchy (view full)

    Methods

    Hierarchy (view full)

    Methods

    access accessSync clear entries @@ -42,82 +42,82 @@ by perm.

    Parameters

    Returns Promise<boolean>

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Returns Promise<boolean>

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      -

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      +

    Returns boolean

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      +

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      Parameters

      • actionFn: ((key, value) => void)

        The function (key: string, value: ConfigValue) => void to be called for each element.

        -
          • (key, value): void
          • Parameters

            • key: string
            • value: AnyJson

            Returns void

      Returns void

    • Returns the value associated to the key, or undefined if there is none.

      +
        • (key, value): void
        • Parameters

          • key: string
          • value: AnyJson

          Returns void

    Returns void

    Returns Entry<CachedOptions>

  • Type Parameters

    Parameters

    Returns V

  • Returns string[]

    Returns Promise<Contents<CachedOptions>>

    Returns Contents<CachedOptions>

    Returns void

    Returns void

    Returns boolean

    Returns boolean

    Returns void

    Returns Promise<string>

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/org_scratchOrgFeatureDeprecation.ScratchOrgFeatureDeprecation.html b/classes/org_scratchOrgFeatureDeprecation.ScratchOrgFeatureDeprecation.html index c6ec7dfb0..0bd2fe53e 100644 --- a/classes/org_scratchOrgFeatureDeprecation.ScratchOrgFeatureDeprecation.html +++ b/classes/org_scratchOrgFeatureDeprecation.ScratchOrgFeatureDeprecation.html @@ -1,10 +1,10 @@ -ScratchOrgFeatureDeprecation | @salesforce/core

    Constructors

    constructor +ScratchOrgFeatureDeprecation | @salesforce/core

    Constructors

    Methods

    • Removes all deprecated features for the organization.

      +

    Constructors

    Methods

    • Removes all deprecated features for the organization.

      Parameters

      • features: string[]

        List of features to filter

      Returns string[]

      feature array with proper mapping.

      -
    • Gets list of feature warnings that should be logged

      Parameters

      • features: string | string[]

        The requested features.

      Returns string[]

      List of string feature warnings.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/classes/org_scratchOrgSettingsGenerator.default.html b/classes/org_scratchOrgSettingsGenerator.default.html index 7cce8606e..e28194c0f 100644 --- a/classes/org_scratchOrgSettingsGenerator.default.html +++ b/classes/org_scratchOrgSettingsGenerator.default.html @@ -1,6 +1,6 @@ default | @salesforce/core

    Helper class for dealing with the settings that are defined in a scratch definition file. This class knows how to extract the settings from the definition, how to expand them into a MD directory and how to generate a package.xml.

    -

    Constructors

    Constructors

    • Parameters

      • Optional options: {
            asDirectory?: boolean;
            capitalizeRecordTypes?: boolean;
            mdApiTmpDir?: string;
            shapeDirName?: string;
        }
        • Optional asDirectory?: boolean
        • Optional capitalizeRecordTypes?: boolean
        • Optional mdApiTmpDir?: string
        • Optional shapeDirName?: string

      Returns default

    Methods

    • Create temporary deploy directory used to upload the scratch org shape. +

    Constructors

    • Parameters

      • Optional options: {
            asDirectory?: boolean;
            capitalizeRecordTypes?: boolean;
            mdApiTmpDir?: string;
            shapeDirName?: string;
        }
        • Optional asDirectory?: boolean
        • Optional capitalizeRecordTypes?: boolean
        • Optional mdApiTmpDir?: string
        • Optional shapeDirName?: string

      Returns default

    Methods

    • Create temporary deploy directory used to upload the scratch org shape. This will create the dir, all of the .setting files and minimal object files needed for objectSettings

      -

      Returns Promise<void>

    • Deploys the settings to the org.

      -

      Parameters

      • scratchOrg: Org
      • apiVersion: string
      • timeout: Duration = ...

      Returns Promise<void>

    • extract the settings from the scratch def file, if they are present.

      -

      Parameters

      Returns Promise<{
          objectSettings: undefined | {
              [objectName: string]: ObjectSetting;
          };
          settings: undefined | Record<string, unknown>;
      }>

    \ No newline at end of file +

    Returns Promise<void>

    \ No newline at end of file diff --git a/classes/org_user.DefaultUserFields-1.html b/classes/org_user.DefaultUserFields-1.html index bf5aba7f8..f8968a031 100644 --- a/classes/org_user.DefaultUserFields-1.html +++ b/classes/org_user.DefaultUserFields-1.html @@ -2,6 +2,6 @@ software development purposes.

    const connection: Connection = await Connection.create({
    authInfo: await AuthInfo.create({ username: 'user@example.com' })
    });
    const org: Org = await Org.create({ connection });
    const options: DefaultUserFields.Options = {
    templateUser: org.getUsername()
    };
    const fields = (await DefaultUserFields.create(options)).getFields();
    -

    Hierarchy

    Methods

    Hierarchy

    Methods

    Methods

    \ No newline at end of file +

    Returns UserFields

    \ No newline at end of file diff --git a/classes/org_user.User-1.html b/classes/org_user.User-1.html index ca5d87af1..5e3c5115c 100644 --- a/classes/org_user.User-1.html +++ b/classes/org_user.User-1.html @@ -1,6 +1,6 @@ User | @salesforce/core

    A class for creating a User, generating a password for a user, and assigning a user to one or more permission sets. See methods for examples.

    -

    Hierarchy

    Methods

    Hierarchy

    Methods

    assignPassword assignPermissionSets createUser init @@ -10,12 +10,12 @@ following org feature: EnableSetPasswordInApi.

    Parameters

    • info: AuthInfo

      The AuthInfo object for user to assign the password to.

    • password: SecureBuffer<void> = ...

      [throwWhenRemoveFails = User.generatePasswordUtf8()] A SecureBuffer containing the new password.

      -

    Returns Promise<void>

    • Methods to assign one or more permission set names to a user.

      +

    Returns Promise<void>

    • Methods to assign one or more permission set names to a user.

      Parameters

      • id: string

        The Salesforce id of the user to assign the permission set to.

      • permsetNames: string[]

        An array of permission set names.

        const username = 'user@example.com';
        const connection: Connection = await Connection.create({
        authInfo: await AuthInfo.create({ username })
        });
        const org = await Org.create({ connection });
        const user: User = await User.create({ org });
        const fields: UserFields = await user.retrieve(username);
        await user.assignPermissionSets(fields.id, ['sfdx', 'approver']);
        -

      Returns Promise<void>

    • Method for creating a new User.

      +

    Returns Promise<void>

    • Method for creating a new User.

      By default scratch orgs only allow creating 2 additional users. Work with Salesforce Customer Service to increase user limits.

      The Org Preferences required to increase the number of users are: @@ -24,10 +24,10 @@

      Parameters

      • fields: UserFields

        The required fields for creating a user.

        const connection: Connection = await Connection.create({
        authInfo: await AuthInfo.create({ username: 'user@example.com' })
        });
        const org = await Org.create({ connection });

        const defaultUserFields = await DefaultUserFields.create({ templateUser: 'devhub_user@example.com' });
        const user: User = await User.create({ org });
        const info: AuthInfo = await user.createUser(defaultUserFields.getFields());
        -

      Returns Promise<AuthInfo>

    • Initialize a new instance of a user and return it.

      -

      Returns Promise<void>

    • Method to retrieve the UserFields for a user.

      +

    Returns Promise<AuthInfo>

    \ No newline at end of file +

    Returns Promise<UserFields>

    \ No newline at end of file diff --git a/classes/schema_validator.SchemaValidator.html b/classes/schema_validator.SchemaValidator.html index 26e2900b1..64edecdd3 100644 --- a/classes/schema_validator.SchemaValidator.html +++ b/classes/schema_validator.SchemaValidator.html @@ -1,5 +1,5 @@ SchemaValidator | @salesforce/core

    Loads a JSON schema and performs validations against JSON objects.

    -

    Constructors

    Constructors

    Methods

    load loadSync validate @@ -7,18 +7,18 @@

    Constructors

    • Creates a new SchemaValidator instance given a logger and path to a schema file.

      Parameters

      • logger: Logger

        An Logger instance on which to base this class's logger.

      • schemaPath: string

        The path to the schema file to load and use for validation.

        -

      Returns SchemaValidator

    Methods

    • Loads a JSON schema from the schemaPath parameter provided at instantiation.

      -

      Returns Promise<JsonMap>

    • Loads a JSON schema from the schemaPath parameter provided at instantiation.

      -

      Returns JsonMap

    • Performs validation of JSON data against the schema located at the schemaPath value provided +

    Returns SchemaValidator

    Methods

    • Loads a JSON schema from the schemaPath parameter provided at instantiation.

      +

      Returns Promise<JsonMap>

    • Loads a JSON schema from the schemaPath parameter provided at instantiation.

      +

      Returns JsonMap

    • Performs validation of JSON data against the schema located at the schemaPath value provided at instantiation.

      Throws SfError{ name: 'ValidationSchemaFieldError' } If there are known validations errors. Throws SfError{ name: 'ValidationSchemaUnknownError' } If there are unknown validations errors.

      Parameters

      • json: AnyJson

        A JSON value to validate against this instance's target schema.

      Returns Promise<AnyJson>

      The validated JSON data.

      -
    • Performs validation of JSON data against the schema located at the schemaPath value provided +

    • Performs validation of JSON data against the schema located at the schemaPath value provided at instantiation.

      Throws SfError{ name: 'ValidationSchemaFieldError' } If there are known validations errors. Throws SfError{ name: 'ValidationSchemaUnknownError' } If there are unknown validations errors.

      Type Parameters

      • T extends AnyJson

      Parameters

      • json: T

        A JSON value to validate against this instance's target schema.

      Returns T

      The validated JSON data.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/classes/sfError.SfError.html b/classes/sfError.SfError.html index 097044ac7..534318655 100644 --- a/classes/sfError.SfError.html +++ b/classes/sfError.SfError.html @@ -4,7 +4,7 @@ directly to the constructor, e.g.

    // To load a message bundle (Note that __dirname should contain a messages folder)
    Messages.importMessagesDirectory(__dirname);
    const messages = Messages.load('myPackageName', 'myBundleName');

    // To throw a non-bundle based error:
    throw new SfError(message.getMessage('myError'), 'MyErrorName');
    -

    Type Parameters

    Hierarchy

    Constructors

    Type Parameters

    • T extends ErrorDataProperties = ErrorDataProperties

    Hierarchy

    • Error
      • SfError

    Constructors

    Properties

    actions? context? data? @@ -22,15 +22,15 @@
  • Optional actions: string[]

    The action message(s).

  • Optional exitCodeOrCause: number | Error

    The exit code which will be used by SfdxCommand or he underlying error that caused this error to be raised.

  • Optional cause: unknown

    The underlying error that caused this error to be raised.

    -
  • Returns SfError<T>

    Properties

    actions?: string[]

    Action messages. Hints to the users regarding what can be done to fix related issues.

    -
    context?: string

    The related context for this error.

    -
    data?: T
    exitCode: number

    SfdxCommand can return this process exit code.

    -
    name: string

    Accessors

    Methods

    • Sets the context of the error. For convenience this object is returned.

      +

    Returns SfError<T>

    Properties

    actions?: string[]

    Action messages. Hints to the users regarding what can be done to fix related issues.

    +
    context?: string

    The related context for this error.

    +
    data?: T
    exitCode: number

    SfdxCommand can return this process exit code.

    +
    name: string

    Accessors

    Methods

    Returns SfError<AnyJson>

    Returns SfError<AnyJson>

    \ No newline at end of file +

    Returns SfError<T>

    \ No newline at end of file diff --git a/classes/sfProject.SfProject.html b/classes/sfProject.SfProject.html index d942f3385..740237906 100644 --- a/classes/sfProject.SfProject.html +++ b/classes/sfProject.SfProject.html @@ -2,7 +2,7 @@ a hidden .sfdx folder that contains all the other local project config files.

    const project = await SfProject.resolve();
    const projectJson = await project.resolveProjectConfig();
    console.log(projectJson.sfdcLoginUrl);
    -

    Methods

    Methods

    • Get the currently activated package on the project. This has no implication on sfdx-project.json +

      Parameters

      • predicate: ((packageDir) => boolean)

      Returns Optional<NamedPackageDir>

    • Get the currently activated package on the project. This has no implication on sfdx-project.json but is useful for keeping track of package and source specific options in a process.

      -

      Returns Nullable<NamedPackageDir>

    • Parameters

      • id: string

      Returns string[]

    • Parameters

      • id: string

      Returns string[]

    • Get the project's default package directory defined in sfdx-project.json using first 'default: true' found. The first entry is returned if no default is specified.

      -

      Returns NamedPackageDir

    • Returns a read-only list of packageDirectories within sfdx-project.json, first reading +

    Returns Optional<NamedPackageDir>

    Returns Optional<NamedPackageDir>

    Returns Optional<string>

    Returns Optional<string>

    Returns SfProjectJson

    Returns Promise<SfProjectJson>

    Returns void

    Returns SfProject

    Returns Promise<SfProject>

    Returns Promise<string>

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/sfProject.SfProjectJson.html b/classes/sfProject.SfProjectJson.html index 40558ce8a..346129361 100644 --- a/classes/sfProject.SfProjectJson.html +++ b/classes/sfProject.SfProjectJson.html @@ -11,7 +11,7 @@

    Example: reading a standard property

    const
     
    @example writing
    const project = await SfProject.resolve();
    const projectJson = await project.resolveProjectConfig();
    projectJson.set('namespace', 'new');
    await projectJson.write();

    See force:project:create

    -

    Hierarchy (view full)

    Properties

    Hierarchy (view full)

    Properties

    Methods

    access accessSync addPackageAlias @@ -60,115 +60,115 @@

    Example: reading a standard property

    const
     resolveRootFolder
     resolveRootFolderSync
     

    Properties

    BLOCKLIST: string[] = ...

    json properties that are uppercase, or allow uppercase keys inside them

    -

    Methods

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Methods

    • Determines if the config file is read/write accessible. Returns true if the user has capabilities specified +

    Returns Promise<boolean>

    • Add a package alias to the project. +

    Returns boolean

    • Add a package alias to the project. If the alias already exists, it will be overwritten.

      -

      Parameters

      • alias: string
      • id: string

      Returns void

    • Add a package directory to the project. +

      Parameters

      • alias: string
      • id: string

      Returns void

    • Add a package directory to the project. If the package directory already exists, the new directory properties will be merged with the existing properties.

      -

      Parameters

      • packageDir: PackageDir

      Returns void

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      -

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      +

      Parameters

      • packageDir: PackageDir

      Returns void

    • Check to see if the config file exists. Returns true if the config file exists and has access, false otherwise.

      +

      Returns Promise<boolean>

    • Invokes actionFn once for each key-value pair present in the config object.

      Parameters

      • actionFn: ((key, value) => void)

        The function (key: string, value: ConfigValue) => void to be called for each element.

        -
          • (key, value): void
          • Parameters

            • key: string
            • value: AnyJson

            Returns void

      Returns void

    • Returns the value associated to the key, or undefined if there is none.

      +
        • (key, value): void
        • Parameters

          • key: string
          • value: AnyJson

          Returns void

    Returns void

    • Returns the value associated to the key, or undefined if there is none.

      Type Parameters

      • K extends string

      Parameters

      • key: K

        The key (object property)

      • Optional decrypt: boolean

        If it is an encrypted key, decrypt the value. If the value is an object, a clone will be returned.

        -

      Returns ProjectJson[K]

    • Type Parameters

      • V = AnyJson

      Parameters

      • key: string
      • Optional decrypt: boolean

      Returns V

    • Returns the entire config contents.

      +

    Returns ProjectJson[K]

  • Type Parameters

    • V = AnyJson

    Parameters

    • key: string
    • Optional decrypt: boolean

    Returns V

    • Returns the entire config contents.

      NOTE: Data will still be encrypted unless decrypt is passed in. A clone of the data will be returned to prevent storing un-encrypted data in memory and potentially saving to the file system.

      -

      Parameters

      • decrypt: boolean = false

      Returns Readonly<ProjectJson>

    • Get package aliases defined in the project.

      -

      Returns Nullable<Dictionary<string>>

    • Returns the packageDirectories within sfdx-project.json, first reading +

    Returns string[]

    • Get package aliases defined in the project.

      +

      Returns Nullable<Dictionary<string>>

    • Returns the packageDirectories within sfdx-project.json, first reading and validating the file if necessary.

      -

      Returns Promise<PackageDir[]>

    • Returns a read-only list of packageDirectories within sfdx-project.json, first reading +

      Returns Promise<PackageDir[]>

    • Returns a read-only list of packageDirectories within sfdx-project.json, first reading and validating the file if necessary. i.e. modifying this array will not affect the sfdx-project.json file.

      -

      Returns NamedPackageDir[]

    • Returns the absolute path to the config file.

      The first time getPath is called, the path is resolved and becomes immutable. This allows implementers to override options properties, like filePath, on the init method for async creation. If that is required for creation, the config files can not be synchronously created.

      -

      Returns string

    • Returns a read-only list of packageDirectories within sfdx-project.json, first reading and validating the file if necessary. i.e. modifying this array will not affect the sfdx-project.json file.

      There can be multiple packages in packageDirectories that point to the same directory. This method only returns one packageDirectory entry per unique directory path. This is useful when doing source operations based on directories but probably not as useful for packaging operations that want to do something for each package entry.

      -

      Returns NamedPackageDir[]

    • Returns a boolean asserting whether a value has been associated to the key in the config object or not.

      -

      Parameters

      • key: string

      Returns boolean

    • Has multiple package directories (MPD) defined in the project.

      -

      Returns boolean

    • Has at least one package alias defined in the project.

      -

      Returns Promise<boolean>

    • Has package directories defined in the project.

      -

      Returns boolean

    • Read the config file and set the config contents. Returns the config contents of the config file. As an +

      Returns string[]

    • Returns a boolean asserting whether a value has been associated to the key in the config object or not.

      +

      Parameters

      • key: string

      Returns boolean

    • Has multiple package directories (MPD) defined in the project.

      +

      Returns boolean

    • Has at least one package alias defined in the project.

      +

      Returns Promise<boolean>

    • Has package directories defined in the project.

      +

      Returns boolean

    • Read the config file and set the config contents. Returns the config contents of the config file. As an optimization, files are only read once per process and updated in memory and via write(). To force a read from the filesystem pass force=true. Throws SfError{ name: 'UnexpectedJsonFileFormat' } There was a problem reading or parsing the file.

      -

      Returns Promise<ProjectJson>

    • Read the config file and set the config contents. Returns the config contents of the config file. As an optimization, files are only read once per process and updated in memory and via write(). To force a read from the filesystem pass force=true. Throws SfError{ name: 'UnexpectedJsonFileFormat' } There was a problem reading or parsing the file.

      -

      Returns ProjectJson

    • Validates sfdx-project.json against the schema.

      +

      Returns Promise<void>

    • Sets the value for the key in the config object. This will override the existing value. +

      Returns void

    • Sets the value for the key in the config object. This will override the existing value. To do a partial update, use BaseConfigStore.update.

      Type Parameters

      • K extends string

      Parameters

      Returns void

    • Convert an object to a ConfigContents and set it as the config contents.

      +

    Returns void

    • Get the stats of the file. Returns the stats of the file.

      +

    Returns void

    • Delete the config file if it exists.

      Throws Error{ name: 'TargetFileNotFound' } If the ConfigFile.getFilename file is not found. fs.unlink

      -

      Returns Promise<void>

    • Delete the config file if it exists.

      Throws Error{ name: 'TargetFileNotFound' } If the ConfigFile.getFilename file is not found. fs.unlink

      -

      Returns void

    • Returns true if an element in the config object existed and has been removed, or false if the element does not exist. BaseConfigStore.has will return false afterwards.

      Type Parameters

      • K extends string

      Parameters

      • key: K

        The key

        -

      Returns boolean

    • Returns true if all elements in the config object existed and have been removed, or false if all the elements +

    Returns boolean

    • Returns true if all elements in the config object existed and have been removed, or false if all the elements do not exist (some may have been removed). BaseConfigStore.has(key) will return false afterwards.

      Parameters

      • keys: string[]

        The keys

        -

      Returns boolean

    • Updates the value for the key in the config object. If the value is an object, it +

    Returns boolean

    • Updates the value for the key in the config object. If the value is an object, it will be merged with the existing object.

      Type Parameters

      • K extends string

      Parameters

      Returns void

    • Write the config file with new contents. If no new contents are provided it will write the existing config +

    Returns void

    • Write the config file with new contents. If no new contents are provided it will write the existing config contents that were set from ConfigFile.read, or an empty file if ConfigFile.read was not called.

      -

      Returns Promise<ProjectJson>

    • Write the config file with new contents. If no new contents are provided it will write the existing config contents that were set from ConfigFile.read, or an empty file if ConfigFile.read was not called.

      -

      Returns ProjectJson

    • Helper used to determine what the local and global folder point to. Returns the file path of the root folder.

      +

    Returns ConfigFile.Options

    • Helper used to determine what the local and global folder point to. Returns the file path of the root folder.

      Parameters

      • isGlobal: boolean

        True if the config should be global. False for local.

        -

      Returns Promise<string>

    • Helper used to determine what the local and global folder point to. Returns the file path of the root folder.

      +

    Returns Promise<string>

    • Helper used to determine what the local and global folder point to. Returns the file path of the root folder.

      Parameters

      • isGlobal: boolean

        True if the config should be global. False for local.

        -

      Returns string

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/classes/stateAggregator_accessors_aliasAccessor.AliasAccessor.html b/classes/stateAggregator_accessors_aliasAccessor.AliasAccessor.html index 2b9fd4780..104ce3861 100644 --- a/classes/stateAggregator_accessors_aliasAccessor.AliasAccessor.html +++ b/classes/stateAggregator_accessors_aliasAccessor.AliasAccessor.html @@ -1,4 +1,4 @@ -AliasAccessor | @salesforce/core

    Hierarchy

    • AsyncOptionalCreatable
      • AliasAccessor

    Constructors

    constructor +AliasAccessor | @salesforce/core

    Hierarchy

    • AsyncOptionalCreatable
      • AliasAccessor

    Constructors

    Methods

    get getAll getUsername @@ -14,29 +14,29 @@

    Parameters

    • Optional options: object

      An options object providing initialization params.

    Returns AliasAccessor

    Methods

    Returns Nullable<string>

    • Returns the username that corresponds to the given alias if it exists

      +

    Returns string[]

    • Returns the username that corresponds to the given alias if it exists

      Parameters

      • alias: string

        the alias that corresponds to a username

        -

      Returns Nullable<string>

    • Returns the value that corresponds to the given alias if it exists

      +

    Returns Nullable<string>

    • Returns the value that corresponds to the given alias if it exists

      Parameters

      • alias: string

        the alias that corresponds to a value

        -

      Returns Nullable<string>

    • Returns true if the provided alias exists

      +

    Returns Nullable<string>

    • If the provided string is an alias, return it. +

    Returns boolean

    • If the provided string is an alias, return it. If the provided string is not an alias, return the username of the provided alias

      This method is helpful when you don't know if the string you have is a username or an alias.

      Parameters

      • usernameOrAlias: string

        a string that might be a username or might be an alias

        -

      Returns undefined | string

    • If the provided string is an alias, it returns the corresponding username. +

    Returns undefined | string

    • If the provided string is an alias, it returns the corresponding username. If the provided string is not an alias, we assume that the provided string is the username and return it.

      This method is helpful when you don't know if the string you have is a username or an alias.

      Parameters

      • usernameOrAlias: string

        a string that might be a username or might be an alias

        -

      Returns string

    • Set an alias for the given aliasable entity. Writes to the file

      +

    Returns string

    • Set an alias for the given aliasable entity. Writes to the file

      Parameters

      • alias: string

        the alias you want to set

      • entity: Aliasable

        the aliasable entity that's being aliased

        -

      Returns Promise<void>

    \ No newline at end of file +

    Returns Promise<void>

    \ No newline at end of file diff --git a/classes/stateAggregator_accessors_orgAccessor.BaseOrgAccessor.html b/classes/stateAggregator_accessors_orgAccessor.BaseOrgAccessor.html index ae6258c55..21d021e94 100644 --- a/classes/stateAggregator_accessors_orgAccessor.BaseOrgAccessor.html +++ b/classes/stateAggregator_accessors_orgAccessor.BaseOrgAccessor.html @@ -1,4 +1,4 @@ -BaseOrgAccessor | @salesforce/core

    Type Parameters

    Hierarchy (view full)

    Constructors

    constructor +BaseOrgAccessor | @salesforce/core

    Type Parameters

    Hierarchy (view full)

    Constructors

    Methods

    exists get getAll @@ -16,26 +16,26 @@ New subclass instances must be created with the static create method.

    Type Parameters

    Parameters

    • Optional options: object

      An options object providing initialization params.

    Returns BaseOrgAccessor<T, P>

    Methods

    • Returns true if there is an auth file for the given username. The read or readAll methods must be called first in order to populate the cache.

      -

      Parameters

      • username: string

      Returns Promise<boolean>

    • Return the contents of the username's auth file from cache. The read or readAll methods must be called first in order to populate the cache. If throwOnNotFound is not true, an empty object {} is returned if the org is not found.

      Parameters

      • username: string

        username to get

      • Optional decrypt: boolean

        if true, decrypt encrypted values

      • Optional throwOnNotFound: true

        if true, throw if the auth file does not already exist in the cache

        -

      Returns P

    • Return the contents of all the auth files from cache. The read or readAll methods must be called first in order to populate the cache.

      +

    Returns P

    • Return the contents of all the auth files from cache. The read or readAll methods must be called first in order to populate the cache.

      Parameters

      • decrypt: boolean = false

        if true, decrypt encrypted values

        -

      Returns P[]

    • Read the auth file for the given username. Once the file has been read, it can be re-accessed with the get method.

      +

    Returns P[]

    • Read the auth file for the given username. Once the file has been read, it can be re-accessed with the get method.

      Parameters

      • username: string

        username to read

      • decrypt: boolean = false

        if true, decrypt encrypted values

      • throwOnNotFound: boolean = true

        throw if file is not found for username

        -

      Returns Promise<Nullable<P>>

    • Read all the auth files under the global state directory

      +

    Returns Promise<Nullable<P>>

    \ No newline at end of file +

    Returns Promise<P[]>

    \ No newline at end of file diff --git a/classes/stateAggregator_accessors_orgAccessor.OrgAccessor.html b/classes/stateAggregator_accessors_orgAccessor.OrgAccessor.html index 847df0cef..154310550 100644 --- a/classes/stateAggregator_accessors_orgAccessor.OrgAccessor.html +++ b/classes/stateAggregator_accessors_orgAccessor.OrgAccessor.html @@ -1,4 +1,4 @@ -OrgAccessor | @salesforce/core

    Hierarchy (view full)

    Constructors

    constructor +OrgAccessor | @salesforce/core

    Hierarchy (view full)

    Constructors

    Methods

    exists get getAll @@ -16,26 +16,26 @@ New subclass instances must be created with the static create method.

    Parameters

    • Optional options: object

      An options object providing initialization params.

    Returns OrgAccessor

    Methods

    • Return the contents of the username's auth file from cache. The read or readAll methods must be called first in order to populate the cache. If throwOnNotFound is not true, an empty object {} is returned if the org is not found.

      Parameters

      • username: string

        username to get

      • Optional decrypt: boolean

        if true, decrypt encrypted values

      • Optional throwOnNotFound: true

        if true, throw if the auth file does not already exist in the cache

        -

      Returns AuthFields

    • Return the contents of all the auth files from cache. The read or readAll methods must be called first in order to populate the cache.

      +

    Returns AuthFields

    • Read the auth file for the given username. Once the file has been read, it can be re-accessed with the get method.

      +

    Returns AuthFields[]

    • Read the auth file for the given username. Once the file has been read, it can be re-accessed with the get method.

      Parameters

      • username: string

        username to read

      • decrypt: boolean = false

        if true, decrypt encrypted values

      • throwOnNotFound: boolean = true

        throw if file is not found for username

        -

      Returns Promise<Nullable<AuthFields>>

    • Read all the auth files under the global state directory

      +

    Returns Promise<Nullable<AuthFields>>

    \ No newline at end of file +

    Returns Promise<AuthFields[]>

    \ No newline at end of file diff --git a/classes/stateAggregator_accessors_sandboxAccessor.SandboxAccessor.html b/classes/stateAggregator_accessors_sandboxAccessor.SandboxAccessor.html index 43db7b5be..3d32bca03 100644 --- a/classes/stateAggregator_accessors_sandboxAccessor.SandboxAccessor.html +++ b/classes/stateAggregator_accessors_sandboxAccessor.SandboxAccessor.html @@ -1,4 +1,4 @@ -SandboxAccessor | @salesforce/core

    Hierarchy (view full)

    Constructors

    constructor +SandboxAccessor | @salesforce/core

    Hierarchy (view full)

    Constructors

    Methods

    exists get getAll @@ -16,26 +16,26 @@ New subclass instances must be created with the static create method.

    Parameters

    • Optional options: object

      An options object providing initialization params.

    Returns SandboxAccessor

    Methods

    • Return the contents of the username's auth file from cache. The read or readAll methods must be called first in order to populate the cache. If throwOnNotFound is not true, an empty object {} is returned if the org is not found.

      Parameters

      • username: string

        username to get

      • Optional decrypt: boolean

        if true, decrypt encrypted values

      • Optional throwOnNotFound: true

        if true, throw if the auth file does not already exist in the cache

        -

      Returns SandboxFields

    • Return the contents of all the auth files from cache. The read or readAll methods must be called first in order to populate the cache.

      +

    Returns SandboxFields

    • Read the auth file for the given username. Once the file has been read, it can be re-accessed with the get method.

      +

    Returns SandboxFields[]

    • Read the auth file for the given username. Once the file has been read, it can be re-accessed with the get method.

      Parameters

      • username: string

        username to read

      • decrypt: boolean = false

        if true, decrypt encrypted values

      • throwOnNotFound: boolean = true

        throw if file is not found for username

        -

      Returns Promise<Nullable<SandboxFields>>

    • Read all the auth files under the global state directory

      +

    Returns Promise<Nullable<SandboxFields>>

    \ No newline at end of file +

    Returns Promise<SandboxFields[]>

    \ No newline at end of file diff --git a/classes/stateAggregator_stateAggregator.StateAggregator.html b/classes/stateAggregator_stateAggregator.StateAggregator.html index 083a58d50..14be3f3ad 100644 --- a/classes/stateAggregator_stateAggregator.StateAggregator.html +++ b/classes/stateAggregator_stateAggregator.StateAggregator.html @@ -1,4 +1,4 @@ -StateAggregator | @salesforce/core

    Hierarchy

    • AsyncOptionalCreatable
      • StateAggregator

    Constructors

    constructor +StateAggregator | @salesforce/core

    Hierarchy

    • AsyncOptionalCreatable
      • StateAggregator

    Constructors

    Properties

    aliases orgs sandboxes @@ -7,9 +7,9 @@

    Constructors

    • Constructs a new AsyncCreatable instance. For internal and subclass use only. New subclass instances must be created with the static create method.

      Parameters

      • Optional options: object

        An options object providing initialization params.

        -

      Returns StateAggregator

    Properties

    aliases: AliasAccessor
    sandboxes: SandboxAccessor

    Methods

    • Clear the cache to force reading from disk.

      +

    Returns StateAggregator

    Properties

    aliases: AliasAccessor
    sandboxes: SandboxAccessor

    Methods

    • Clear the cache to force reading from disk.

      NOTE: Only call this method if you must and you know what you are doing.

      -

      Parameters

      • path: string = Global.DIR

      Returns void

    \ No newline at end of file +

    Returns Promise<StateAggregator>

    \ No newline at end of file diff --git a/classes/status_myDomainResolver.MyDomainResolver-1.html b/classes/status_myDomainResolver.MyDomainResolver-1.html index c7d29c1b1..b6431994b 100644 --- a/classes/status_myDomainResolver.MyDomainResolver-1.html +++ b/classes/status_myDomainResolver.MyDomainResolver-1.html @@ -2,7 +2,7 @@ Salesforce DNS service. This service is not exclusive to Salesforce My Domain URL and could be used for any hostname.

    (async () => {
    const options: MyDomainResolver.Options = {
    url: new URL('http://mydomain.salesforce.com'),
    timeout: Duration.minutes(5),
    frequency: Duration.seconds(10)
    };
    const resolver: MyDomainResolver = await MyDomainResolver.create(options);
    const ipAddress: AnyJson = await resolver.resolve();
    console.log(`Successfully resolved host: ${options.url} to address: ${ipAddress}`);
    })();
    -

    Hierarchy

    Constructors

    Hierarchy

    Constructors

    Properties

    Methods

    getCnames getFrequency @@ -11,8 +11,8 @@

    Constructors

    Properties

    DEFAULT_DOMAIN: URL = ...

    Methods

    • Method that performs the dns lookup of the host. If the lookup fails the internal polling client will try again +

    Returns MyDomainResolver

    Properties

    DEFAULT_DOMAIN: URL = ...

    Methods

    • Method that performs the dns lookup of the host. If the lookup fails the internal polling client will try again given the optional interval. Returns the resolved ip address.

      If SFDX_DISABLE_DNS_CHECK environment variable is set to true, it will immediately return the host without executing the dns loookup.

      -

      Returns Promise<string>

    \ No newline at end of file +

    Returns Promise<string>

    \ No newline at end of file diff --git a/classes/status_pollingClient.PollingClient-1.html b/classes/status_pollingClient.PollingClient-1.html index 7a7350882..8a6bad3dd 100644 --- a/classes/status_pollingClient.PollingClient-1.html +++ b/classes/status_pollingClient.PollingClient-1.html @@ -3,9 +3,9 @@ want to use this? It can impact Salesforce API usage.

    const options: PollingClient.Options = {
    async poll(): Promise<StatusResult> {
    return Promise.resolve({ completed: true, payload: 'Hello World' });
    },
    frequency: Duration.milliseconds(10),
    timeout: Duration.minutes(1)
    };
    const client = await PollingClient.create(options);
    const pollResult = await client.subscribe();
    console.log(`pollResult: ${pollResult}`);
    -

    Hierarchy

    Methods

    Hierarchy

    Methods

    Methods

    • Returns a promise to call the specified polling function using the interval and timeout specified +

      Returns Promise<void>

    • Returns a promise to call the specified polling function using the interval and timeout specified in the polling options.

      -

      Type Parameters

      • T = AnyJson

      Returns Promise<T>

    \ No newline at end of file +

    Type Parameters

    • T = AnyJson

    Returns Promise<T>

    \ No newline at end of file diff --git a/classes/status_pollingClient.PollingClient.DefaultPollingOptions.html b/classes/status_pollingClient.PollingClient.DefaultPollingOptions.html index 42a570b3f..c05dc77a0 100644 --- a/classes/status_pollingClient.PollingClient.DefaultPollingOptions.html +++ b/classes/status_pollingClient.PollingClient.DefaultPollingOptions.html @@ -1,10 +1,10 @@ DefaultPollingOptions | @salesforce/core

    Default options set for polling. The default options specify a timeout of 3 minutes and polling frequency of 15 seconds;

    -

    Implements

    Constructors

    Implements

    Constructors

    Properties

    Constructors

    Properties

    frequency: Duration
    poll: (() => Promise<StatusResult>)

    Type declaration

    timeout: Duration
    \ No newline at end of file +

    Returns DefaultPollingOptions

    Properties

    frequency: Duration
    poll: (() => Promise<StatusResult>)

    Type declaration

    timeout: Duration
    \ No newline at end of file diff --git a/classes/status_streamingClient.StreamingClient-1.html b/classes/status_streamingClient.StreamingClient-1.html index 0c8cca669..bdd3bc5cc 100644 --- a/classes/status_streamingClient.StreamingClient-1.html +++ b/classes/status_streamingClient.StreamingClient-1.html @@ -17,7 +17,7 @@ policy goes into effect.

    const streamProcessor = (message: JsonMap): StatusResult => {
    const payload = ensureJsonMap(message.payload);
    const id = ensureString(payload.id);

    if (payload.status !== 'Active') {
    return { completed: false };
    }

    return {
    completed: true,
    payload: id
    };
    };

    const org = await Org.create();
    const options = new StreamingClient.DefaultOptions(org, 'MyPushTopics', streamProcessor);

    const asyncStatusClient = await StreamingClient.create(options);

    await asyncStatusClient.handshake();

    const info: RequestInfo = {
    method: 'POST',
    url: `${org.getField(OrgFields.INSTANCE_URL)}/SomeService`,
    headers: { HEADER: 'HEADER_VALUE'},
    body: 'My content'
    };

    await asyncStatusClient.subscribe(async () => {
    const connection = await org.getConnection();
    // Now that we are subscribed, we can initiate the request that will cause the events to start streaming.
    const requestResponse: JsonCollection = await connection.request(info);
    const id = ensureJsonMap(requestResponse).id;
    console.log(`this.id: ${JSON.stringify(ensureString(id), null, 4)}`);
    });
    -

    Hierarchy

    Constructors

    Hierarchy

    Constructors

    Methods

    handshake init replay @@ -25,13 +25,13 @@

    Constructors

    Methods

    • Allows replaying of of Streaming events starting with replayId.

      +

    Returns StreamingClient

    Methods

    • Allows replaying of of Streaming events starting with replayId.

      Parameters

      • replayId: number

        The starting message id to replay from.

        -

      Returns void

    • Subscribe to streaming events. When the streaming processor that's set in the options completes execution it +

    Returns void

    • Subscribe to streaming events. When the streaming processor that's set in the options completes execution it returns a payload in the StatusResult object. The payload is just echoed here for convenience.

      Throws SfError{ name: 'StreamingClient.TimeoutErrorType.SUBSCRIBE'} When the subscribe timeout occurs.

      Parameters

      • Optional streamInit: (() => Promise<void>)

        This function should call the platform apis that result in streaming updates on push topics. StatusResult

        -
          • (): Promise<void>
          • Returns Promise<void>

      Returns Promise<void | AnyJson>

    \ No newline at end of file +
      • (): Promise<void>
      • Returns Promise<void>

    Returns Promise<void | AnyJson>

    \ No newline at end of file diff --git a/classes/status_streamingClient.StreamingClient.DefaultOptions.html b/classes/status_streamingClient.StreamingClient.DefaultOptions.html index 14d30946b..2815f3666 100644 --- a/classes/status_streamingClient.StreamingClient.DefaultOptions.html +++ b/classes/status_streamingClient.StreamingClient.DefaultOptions.html @@ -1,5 +1,5 @@ DefaultOptions | @salesforce/core

    Default Streaming Options. Uses Faye as the cometd impl.

    -

    Implements

    Constructors

    Implements

    Constructors

    Properties

    apiVersion channel handshakeTimeout @@ -19,19 +19,19 @@ System topics are deprecated.

  • streamProcessor: StreamProcessor

    The function called that can process streaming messages.

  • envDep: Env = env
  • Returns DefaultOptions

    Properties

    apiVersion: string

    The salesforce api version

    -
    channel: string

    The streaming channel aka topic

    -
    handshakeTimeout: Duration

    The hard timeout that happens with a handshake.

    -
    org: Org

    The org streaming target.

    -
    streamProcessor: StreamProcessor

    The function for processing streaming messages

    -
    streamingImpl: StreamingClientIfc

    The function for build the inner client impl. Allows for mocking.

    -
    subscribeTimeout: Duration

    The hard timeout that happens with subscribe

    -
    DEFAULT_HANDSHAKE_TIMEOUT: Duration = ...
    DEFAULT_SUBSCRIBE_TIMEOUT: Duration = ...
    SFDX_ENABLE_FAYE_COOKIES_ALLOW_ALL_PATHS: "SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING" = 'SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING'
    SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING: "SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING" = 'SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING'

    Methods

    Properties

    apiVersion: string

    The salesforce api version

    +
    channel: string

    The streaming channel aka topic

    +
    handshakeTimeout: Duration

    The hard timeout that happens with a handshake.

    +
    org: Org

    The org streaming target.

    +
    streamProcessor: StreamProcessor

    The function for processing streaming messages

    +
    streamingImpl: StreamingClientIfc

    The function for build the inner client impl. Allows for mocking.

    +
    subscribeTimeout: Duration

    The hard timeout that happens with subscribe

    +
    DEFAULT_HANDSHAKE_TIMEOUT: Duration = ...
    DEFAULT_SUBSCRIBE_TIMEOUT: Duration = ...
    SFDX_ENABLE_FAYE_COOKIES_ALLOW_ALL_PATHS: "SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING" = 'SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING'
    SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING: "SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING" = 'SFDX_ENABLE_FAYE_REQUEST_RESPONSE_LOGGING'

    Methods

    • Setter for the subscribe timeout.

      +

    Returns void

    \ No newline at end of file +

    Returns void

    \ No newline at end of file diff --git a/classes/status_types.CometClient.html b/classes/status_types.CometClient.html index c8cc847b9..dfc6155bc 100644 --- a/classes/status_types.CometClient.html +++ b/classes/status_types.CometClient.html @@ -1,6 +1,6 @@ CometClient | @salesforce/core

    Class CometClientAbstract

    Comet client interface. The is to allow for mocking the inner streaming Cometd implementation. The Faye implementation is used by default but it could be used to adapt another Cometd impl.

    -

    Hierarchy (view full)

    Constructors

    Hierarchy (view full)

    Constructors

    Methods

    Constructors

    • Parameters

      • Optional options: EventEmitterOptions

      Returns CometClient

    Methods

    • Add a custom extension to the underlying client.

      Parameters

      Returns void

    • Disable polling features.

      +

    Returns void

    • Disable polling features.

      Parameters

      • label: string

        Polling feature label.

        -

      Returns void

    • Method to call to disconnect the client from the server.

      -

      Returns void

    • handshake with the streaming channel

      +

    Returns void

    • Method to call to disconnect the client from the server.

      +

      Returns void

    • handshake with the streaming channel

      Parameters

      • callback: (() => void)

        Callback for the handshake when it successfully completes. The handshake should throw errors when errors are encountered.

        -
          • (): void
          • Returns void

      Returns void

    • Sets an http header name/value.

      +
        • (): void
        • Returns void

    Returns void

    • Sets an http header name/value.

      Parameters

      • name: string

        The header name.

      • value: string

        The header value.

        -

      Returns void

    • Subscribes to Comet topics. Subscribe should perform a handshake if one hasn't been performed yet.

      +

    Returns void

    • Subscribes to Comet topics. Subscribe should perform a handshake if one hasn't been performed yet.

      Parameters

      • channel: string

        The topic to subscribe to.

      • callback: ((message) => void)

        The callback to execute once a message has been received.

        -
          • (message): void
          • Parameters

            • message: JsonMap

            Returns void

      Returns CometSubscription

    \ No newline at end of file +
      • (message): void
      • Parameters

        • message: JsonMap

        Returns void

    Returns CometSubscription

    \ No newline at end of file diff --git a/classes/testSetup.MockTestOrgData.html b/classes/testSetup.MockTestOrgData.html index f72a561b1..8cdf9a3c0 100644 --- a/classes/testSetup.MockTestOrgData.html +++ b/classes/testSetup.MockTestOrgData.html @@ -1,7 +1,7 @@ MockTestOrgData | @salesforce/core

    Mock class for Salesforce Orgs.

    Example

    const testOrg = new MockTestOrgData();
    await $$.stubAuths(testOrg)
    -

    Constructors

    Constructors

    Properties

    accessToken: string
    aliases?: string[]
    authcode: string
    clientId: string
    clientSecret: string
    configs?: string[]
    devHubUsername?: string
    instanceUrl: string
    isDevHub?: boolean
    isExpired?: boolean | "unknown"
    isScratchOrg?: boolean
    loginUrl: string
    namespacePrefix?: string
    orgId: string
    password?: string
    redirectUri: string
    refreshToken: undefined | string
    testId: string
    tracksSource: undefined | boolean
    userId: string
    username: string

    Methods

    • Add devhub username to properties.

      -

      Parameters

      • username: string

      Returns void

    • Return mock user information based on this org.

      -

      Returns MockUserInfo

    \ No newline at end of file +

    Constructors

    Properties

    accessToken: string
    aliases?: string[]
    authcode: string
    clientId: string
    clientSecret: string
    configs?: string[]
    devHubUsername?: string
    instanceUrl: string
    isDevHub?: boolean
    isExpired?: boolean | "unknown"
    isScratchOrg?: boolean
    loginUrl: string
    namespacePrefix?: string
    orgId: string
    password?: string
    redirectUri: string
    refreshToken: undefined | string
    testId: string
    tracksSource: undefined | boolean
    userId: string
    username: string

    Methods

    • Add devhub username to properties.

      +

      Parameters

      • username: string

      Returns void

    • Return mock user information based on this org.

      +

      Returns MockUserInfo

    \ No newline at end of file diff --git a/classes/testSetup.MockTestSandboxData.html b/classes/testSetup.MockTestSandboxData.html index 0b80977b0..58ca912c9 100644 --- a/classes/testSetup.MockTestSandboxData.html +++ b/classes/testSetup.MockTestSandboxData.html @@ -1,12 +1,12 @@ MockTestSandboxData | @salesforce/core

    Mock class for Salesforce Sandboxes.

    Example

    const testOrg = new MockTestSandboxData();
    await $$.stubSandboxes(testOrg)
    -

    Constructors

    Constructors

    Properties

    id: string = ...
    prodOrgUsername: string
    sandboxName?: string
    sandboxOrgId: string
    username?: string

    Methods

    \ No newline at end of file +

    Constructors

    Properties

    id: string = ...
    prodOrgUsername: string
    sandboxName?: string
    sandboxOrgId: string
    username?: string

    Methods

    \ No newline at end of file diff --git a/classes/testSetup.StreamingMockCometClient.html b/classes/testSetup.StreamingMockCometClient.html index 4fc034281..bb92ea798 100644 --- a/classes/testSetup.StreamingMockCometClient.html +++ b/classes/testSetup.StreamingMockCometClient.html @@ -1,7 +1,7 @@ StreamingMockCometClient | @salesforce/core

    Simulates a comet client. To the core streaming client this mocks the internal comet impl. The uses setTimeout(0ms) event loop phase just so the client can simulate actual streaming without the response latency.

    -

    Hierarchy (view full)

    Constructors

    Hierarchy (view full)

    Constructors

    Methods

    Constructors

    Methods

    • Fake handshake that invoke callback after the setTimeout event phase.

      +

    Returns StreamingMockCometClient

    Methods

    • Fake handshake that invoke callback after the setTimeout event phase.

      Parameters

      • callback: (() => void)

        The function to invoke.

        -
          • (): void
          • Returns void

      Returns void

    • Fake subscription that completed after the setTimout event phase.

      +
        • (): void
        • Returns void

    Returns void

    • Fake subscription that completed after the setTimout event phase.

      Parameters

      • channel: string

        The streaming channel.

      • callback: ((message) => void)

        The function to invoke after the subscription completes.

        -
          • (message): void
          • Parameters

            • message: JsonMap

            Returns void

      Returns CometSubscription

    \ No newline at end of file +
      • (message): void
      • Parameters

        • message: JsonMap

        Returns void

    Returns CometSubscription

    \ No newline at end of file diff --git a/classes/testSetup.StreamingMockCometSubscription.html b/classes/testSetup.StreamingMockCometSubscription.html index 792f2fe74..f7a2215d2 100644 --- a/classes/testSetup.StreamingMockCometSubscription.html +++ b/classes/testSetup.StreamingMockCometSubscription.html @@ -1,11 +1,11 @@ StreamingMockCometSubscription | @salesforce/core

    Simulates a comet subscription to a streaming channel.

    -

    Hierarchy

    • EventEmitter
      • StreamingMockCometSubscription

    Implements

    Constructors

    Hierarchy

    • EventEmitter
      • StreamingMockCometSubscription

    Implements

    Constructors

    Properties

    SUBSCRIPTION_COMPLETE: string = 'subscriptionComplete'
    SUBSCRIPTION_FAILED: string = 'subscriptionFailed'

    Methods

    • Sets up a streaming subscription callback to occur after the setTimeout event loop phase.

      +

    Constructors

    Properties

    SUBSCRIPTION_COMPLETE: string = 'subscriptionComplete'
    SUBSCRIPTION_FAILED: string = 'subscriptionFailed'

    Methods

    • Sets up a streaming subscription callback to occur after the setTimeout event loop phase.

      Parameters

      • callback: (() => void)

        The function to invoke.

        -
          • (): void
          • Returns void

      Returns void

    • Sets up a streaming subscription errback to occur after the setTimeout event loop phase.

      +
        • (): void
        • Returns void

    Returns void

    • Sets up a streaming subscription errback to occur after the setTimeout event loop phase.

      Parameters

      • callback: ((error) => void)

        The function to invoke.

        -
          • (error): void
          • Parameters

            • error: Error

            Returns void

      Returns void

    \ No newline at end of file +
      • (error): void
      • Parameters

        • error: Error

        Returns void

    Returns void

    \ No newline at end of file diff --git a/classes/testSetup.TestContext.html b/classes/testSetup.TestContext.html index 1ab371d0d..e9bd7d4de 100644 --- a/classes/testSetup.TestContext.html +++ b/classes/testSetup.TestContext.html @@ -1,5 +1,5 @@ TestContext | @salesforce/core

    Instantiate a @salesforce/core test context.

    -

    Constructors

    Constructors

    Properties

    Constructors

    • Parameters

      • options: {
            sandbox?: SinonSandbox;
            setup?: boolean;
            sinon?: SinonStatic;
        } = {}
        • Optional sandbox?: SinonSandbox
        • Optional setup?: boolean
        • Optional sinon?: SinonStatic

      Returns TestContext

    Properties

    SANDBOX: SinonSandbox

    The default sandbox is cleared out before each test run.

    +

    Constructors

    • Parameters

      • options: {
            sandbox?: SinonSandbox;
            setup?: boolean;
            sinon?: SinonStatic;
        } = {}
        • Optional sandbox?: SinonSandbox
        • Optional setup?: boolean
        • Optional sinon?: SinonStatic

      Returns TestContext

    Properties

    SANDBOX: SinonSandbox

    The default sandbox is cleared out before each test run.

    See [sinon sandbox]https://sinonjs.org/releases/v14/sandbox/.

    -
    SANDBOXES: SandboxTypes

    An object of different sandboxes. Used when +

    SANDBOXES: SandboxTypes

    An object of different sandboxes. Used when needing to restore parts of the system for customized testing.

    -
    TEST_LOGGER: Logger

    The test logger that is used when Logger.child is used anywhere. It uses memory logging.

    -
    configStubs: {
        AuthInfoConfig?: ConfigStub;
        Config?: ConfigStub;
        OrgUsersConfig?: ConfigStub;
        SfProjectJson?: ConfigStub;
        [configName: string]: Optional<ConfigStub>;
    } = {}

    An object used in tests that interact with config files.

    -

    Type declaration

    id: string = ...

    id A unique id for the test run.

    -
    stubs: Record<string, SinonStub<any[], any>> = {}

    A record of stubs created during instantiation.

    -

    Methods

    • Used to mock http request to Salesforce.

      +
    TEST_LOGGER: Logger

    The test logger that is used when Logger.child is used anywhere. It uses memory logging.

    +
    configStubs: {
        AuthInfoConfig?: ConfigStub;
        Config?: ConfigStub;
        OrgUsersConfig?: ConfigStub;
        SfProjectJson?: ConfigStub;
        [configName: string]: Optional<ConfigStub>;
    } = {}

    An object used in tests that interact with config files.

    +

    Type declaration

    id: string = ...

    id A unique id for the test run.

    +
    stubs: Record<string, SinonStub<any[], any>> = {}

    A record of stubs created during instantiation.

    +

    Methods

    • Used to mock http request to Salesforce.

      Parameters

      • request: AnyJson

        An HttpRequest.

      • Optional options: AnyJson

        Additional options.

        See Connection.request

        -

      Returns Promise<AnyJson>

    • Gets a config stub contents by name.

      +

    Returns Promise<AnyJson>

    • Gets a config stub contents by name.

      Parameters

      • name: string

        The name of the config.

      • Optional group: string

        If the config supports groups.

        -

      Returns ConfigContents

    • A function used when resolving the global path. Calls globalPathResolverSync by default.

      +

    Returns ConfigContents

    • A function used when resolving the global path. Calls globalPathResolverSync by default.

      Parameters

      • uid: string

        Unique id.

        -

      Returns Promise<string>

    • A function used when resolving the global path.

      +

    Returns Promise<string>

    • A function used when resolving the global path.

      Parameters

      • uid: string

        Unique id.

        -

      Returns string

    • Set stubs for working in the context of a SfProject

      -

      Parameters

      • inProject: boolean = true

      Returns void

    • A function used when resolving the local path. Calls localPathResolverSync by default.

      +

    Returns string

    • Set stubs for working in the context of a SfProject

      +

      Parameters

      • inProject: boolean = true

      Returns void

    • A function used when resolving the local path. Calls localPathResolverSync by default.

      Parameters

      • uid: string

        Unique id.

        -

      Returns Promise<string>

    • A function used when resolving the local path.

      +

    Returns Promise<string>

    • A function used when resolving the local path.

      Parameters

      • uid: string

        Unique id.

        -

      Returns string

    • A function used for resolving paths. Calls localPathRetriever and globalPathRetriever.

      +

    Returns string

    • A function used for resolving paths. Calls localPathRetriever and globalPathRetriever.

      Parameters

      • isGlobal: boolean

        true if the config is global.

      • Optional uid: string

        user id.

        -

      Returns Promise<string>

    • A function used for resolving paths. Calls localPathRetrieverSync and globalPathRetrieverSync.

      +

    Returns Promise<string>

    • A function used for resolving paths. Calls localPathRetrieverSync and globalPathRetrieverSync.

      Parameters

      • isGlobal: boolean

        true if the config is global.

      • Optional uid: string

        user id.

        -

      Returns string

    • Sets a config stub contents by name

      +

    Returns string

    • Sets a config stub contents by name

      Parameters

      • name: string

        The name of the config stub.

      • value: ConfigContents

        The actual stub contents. The Mock data.

        -

      Returns void

    • Add beforeEach and afterEach hooks to init the stubs and restore them. +

    Returns void

    • Add beforeEach and afterEach hooks to init the stubs and restore them. This is called automatically when the class is instantiated unless the setup option is set to false.

      -

      Returns void

    • Stub the aliases in the global aliases config file.

      -

      Parameters

      • aliases: Record<string, string>
      • group: string = aliasAccessorEntireFile.DEFAULT_GROUP

      Returns void

    • Stub contents in the config file.

      -

      Parameters

      • config: Record<string, string>

      Returns Promise<void>

    • Stub salesforce user authorizations.

      +

      Returns void

    • Stub the aliases in the global aliases config file.

      +

      Parameters

      • aliases: Record<string, string>
      • group: string = aliasAccessorEntireFile.DEFAULT_GROUP

      Returns void

    • Stub contents in the config file.

      +

      Parameters

      • config: Record<string, string>

      Returns Promise<void>

    • Stub salesforce user authorizations.

      Parameters

      • users: Record<string, MockTestOrgData[]>

        The users to stub. The key is the username of the admin user and it must be included in the users array in order to obtain the orgId key for the remaining users. The admin user is excluded from the users array.

        -

      Returns void

    \ No newline at end of file +

    Returns void

    \ No newline at end of file diff --git a/classes/util_cache.Cache.html b/classes/util_cache.Cache.html index 8ec498497..704865a79 100644 --- a/classes/util_cache.Cache.html +++ b/classes/util_cache.Cache.html @@ -1,8 +1,8 @@ -Cache | @salesforce/core

    Hierarchy

    • Map
      • Cache

    Accessors

    hits +Cache | @salesforce/core

    Hierarchy

    • Map
      • Cache

    Accessors

    Methods

    • Type Parameters

      • V

      Parameters

      • key: string

      Returns undefined | V

    • Type Parameters

      • V

      Parameters

      • key: string
      • value: V

      Returns void

    \ No newline at end of file +

    Accessors

    Methods

    • Type Parameters

      • V

      Parameters

      • key: string

      Returns undefined | V

    • Type Parameters

      • V

      Parameters

      • key: string
      • value: V

      Returns void

    \ No newline at end of file diff --git a/classes/util_directoryWriter.DirectoryWriter.html b/classes/util_directoryWriter.DirectoryWriter.html index 2394cd78e..2283c09e0 100644 --- a/classes/util_directoryWriter.DirectoryWriter.html +++ b/classes/util_directoryWriter.DirectoryWriter.html @@ -1,6 +1,6 @@ -DirectoryWriter | @salesforce/core

    Implements

    Constructors

    constructor +DirectoryWriter | @salesforce/core

    Implements

    Constructors

    Accessors

    Methods

    • Parameters

      • contents: string | Buffer | Readable
      • targetPath: string

      Returns Promise<void>

    • Returns undefined | string

    \ No newline at end of file +

    Constructors

    Accessors

    Methods

    • Parameters

      • contents: string | Buffer | Readable
      • targetPath: string

      Returns Promise<void>

    • Returns undefined | string

    \ No newline at end of file diff --git a/classes/util_sfdcUrl.SfdcUrl.html b/classes/util_sfdcUrl.SfdcUrl.html index 2e109ecc9..c25160f03 100644 --- a/classes/util_sfdcUrl.SfdcUrl.html +++ b/classes/util_sfdcUrl.SfdcUrl.html @@ -1,4 +1,4 @@ -SfdcUrl | @salesforce/core

    Hierarchy

    • URL
      • SfdcUrl

    Constructors

    constructor +SfdcUrl | @salesforce/core

    Hierarchy

    • URL
      • SfdcUrl

    Constructors

    Properties

    Methods

    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 +

    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 SF_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 +

    • Returns the appropriate jwt audience url for this url Use SF_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

      +
    • 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

      +
    • 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

      +
    • 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 +

    • 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 SF_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.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/classes/util_zipWriter.ZipWriter.html b/classes/util_zipWriter.ZipWriter.html index ea23f9336..76e3a86a4 100644 --- a/classes/util_zipWriter.ZipWriter.html +++ b/classes/util_zipWriter.ZipWriter.html @@ -1,6 +1,6 @@ -ZipWriter | @salesforce/core

    Hierarchy

    • Writable
      • ZipWriter

    Implements

    Constructors

    constructor +ZipWriter | @salesforce/core

    Hierarchy

    • Writable
      • ZipWriter

    Implements

    Constructors

    Accessors

    Methods

    • Parameters

      • contents: string | Buffer | Readable
      • path: string

      Returns Promise<void>

    • Returns Promise<void>

    • Returns undefined | string

    \ No newline at end of file +

    Constructors

    Accessors

    Methods

    • Parameters

      • contents: string | Buffer | Readable
      • path: string

      Returns Promise<void>

    • Returns Promise<void>

    • Returns undefined | string

    \ No newline at end of file diff --git a/classes/webOAuthServer.WebOAuthServer-1.html b/classes/webOAuthServer.WebOAuthServer-1.html index 851e7143d..5899c216a 100644 --- a/classes/webOAuthServer.WebOAuthServer-1.html +++ b/classes/webOAuthServer.WebOAuthServer-1.html @@ -2,14 +2,14 @@

    Usage:

    const oauthConfig = {
    loginUrl: this.flags.instanceurl,
    clientId: this.flags.clientid,
    };

    const oauthServer = await WebOAuthServer.create({ oauthConfig });
    await oauthServer.start();
    await open(oauthServer.getAuthorizationUrl(), { wait: false });
    const authInfo = await oauthServer.authorizeAndSave();
    -

    Hierarchy

    Constructors

    Hierarchy

    Constructors

    Properties

    DEFAULT_PORT: number = 1717

    Methods

    • Returns the authorization url that's used for the login flow

      -

      Returns string

    • Returns the configured oauthLocalPort or the WebOAuthServer.DEFAULT_PORT

      -

      Returns Promise<number>

    \ No newline at end of file +

    Constructors

    Properties

    DEFAULT_PORT: number = 1717

    Methods

    • Returns the authorization url that's used for the login flow

      +

      Returns string

    • Returns the configured oauthLocalPort or the WebOAuthServer.DEFAULT_PORT

      +

      Returns Promise<number>

    \ No newline at end of file diff --git a/classes/webOAuthServer.WebServer.html b/classes/webOAuthServer.WebServer.html index e16c77749..d2752355c 100644 --- a/classes/webOAuthServer.WebServer.html +++ b/classes/webOAuthServer.WebServer.html @@ -1,5 +1,5 @@ WebServer | @salesforce/core

    Handles the actions specific to the http server

    -

    Hierarchy

    • AsyncCreatable<WebServer.Options>
      • WebServer

    Constructors

    Hierarchy

    • AsyncCreatable<WebServer.Options>
      • WebServer

    Constructors

    Properties

    Constructors

    Properties

    host: string = 'localhost'
    port: number = WebOAuthServer.DEFAULT_PORT
    server: Server<typeof IncomingMessage, typeof ServerResponse>
    DEFAULT_CLIENT_SOCKET_TIMEOUT: number = 20_000

    Methods

    • sends a response redirect.

      +

    Constructors

    Properties

    host: string = 'localhost'
    port: number = WebOAuthServer.DEFAULT_PORT
    server: Server<typeof IncomingMessage, typeof ServerResponse>
    DEFAULT_CLIENT_SOCKET_TIMEOUT: number = 20_000

    Methods

    • sends a response redirect.

      Parameters

      • status: number

        the statusCode for the response.

      • url: string

        the url to redirect to.

      • response: ServerResponse<IncomingMessage>

        the response to write the redirect to.

        -

      Returns void

    • Parameters

      • response: ServerResponse<IncomingMessage>

      Returns Promise<void>

    • Preflight request:

      +

    Returns void

    • Parameters

      • response: ServerResponse<IncomingMessage>

      Returns Promise<void>

    • Parameters

      • response: ServerResponse<IncomingMessage>

      Returns Promise<void>

    • sends a response to the browser reporting an error.

      +

      Parameters

      • response: ServerResponse<IncomingMessage>

      Returns void

    • Parameters

      • response: ServerResponse<IncomingMessage>

      Returns Promise<void>

    • sends a response to the browser reporting an error.

      Parameters

      • error: Error

        the oauth error

      • response: ServerResponse<IncomingMessage>

        the HTTP response.

        -

      Returns void

    • sends a response to the browser reporting the success.

      +

    Returns void

    • sends a response to the browser reporting the success.

      Parameters

      • response: ServerResponse<IncomingMessage>

        the HTTP response.

        -

      Returns void

    • sends a response error.

      +

    Returns void

    • sends a response error.

      Parameters

      • status: number

        the statusCode for the response.

      • message: string

        the message for the http body.

      • response: ServerResponse<IncomingMessage>

        the response to write the error to.

        -

      Returns void

    • Starts the http server after checking that the port is open

      -

      Returns Promise<void>

    \ No newline at end of file +

    Returns void

    • Starts the http server after checking that the port is open

      +

      Returns Promise<void>

    \ No newline at end of file diff --git a/enums/config_config.SfConfigProperties.html b/enums/config_config.SfConfigProperties.html index 79be0a7f0..0e2599c99 100644 --- a/enums/config_config.SfConfigProperties.html +++ b/enums/config_config.SfConfigProperties.html @@ -1,3 +1,3 @@ -SfConfigProperties | @salesforce/core

    Enumeration Members

    DISABLE_TELEMETRY +SfConfigProperties | @salesforce/core

    Enumeration Members

    Enumeration Members

    DISABLE_TELEMETRY: "disable-telemetry"

    Disables telemetry reporting

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/enums/config_config.SfdxPropertyKeys.html b/enums/config_config.SfdxPropertyKeys.html index 3b9ce53b8..ad35daab0 100644 --- a/enums/config_config.SfdxPropertyKeys.html +++ b/enums/config_config.SfdxPropertyKeys.html @@ -1,4 +1,4 @@ -SfdxPropertyKeys | @salesforce/core

    Enumeration Members

    API_VERSION +SfdxPropertyKeys | @salesforce/core

    Enumeration Members

    API_VERSION: "apiVersion"

    The api version

    Deprecated

    Replaced by OrgConfigProperties.ORG_API_VERSION in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config

    -
    CUSTOM_ORG_METADATA_TEMPLATES: "customOrgMetadataTemplates"

    Custom templates repo or local location.

    +
    CUSTOM_ORG_METADATA_TEMPLATES: "customOrgMetadataTemplates"

    Custom templates repo or local location.

    Deprecated

    Replaced by OrgConfigProperties.ORG_CUSTOM_METADATA_TEMPLATES in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config

    -
    DEFAULT_DEV_HUB_USERNAME: "defaultdevhubusername"

    Username associated with the default dev hub org.

    +
    DEFAULT_DEV_HUB_USERNAME: "defaultdevhubusername"

    Username associated with the default dev hub org.

    Deprecated

    Replaced by OrgConfigProperties.TARGET_DEV_HUB in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config will remain in v3 for the foreseeable future so that sfdx-core can map between sf and sfdx config values

    -
    DEFAULT_USERNAME: "defaultusername"

    Username associate with the default org.

    +
    DEFAULT_USERNAME: "defaultusername"

    Username associate with the default org.

    Deprecated

    Replaced by OrgConfigProperties.TARGET_ORG in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config will remain in v3 for the foreseeable future so that sfdx-core can map between sf and sfdx config values

    -
    DISABLE_TELEMETRY: "disableTelemetry"

    Disables telemetry reporting

    +
    DISABLE_TELEMETRY: "disableTelemetry"

    Disables telemetry reporting

    Deprecated

    Replaced by SfPropertyKeys.DISABLE_TELEMETRY in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config

    -
    INSTANCE_URL: "instanceUrl"

    Deprecated

    Replaced by OrgConfigProperties.ORG_INSTANCE_URL in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config

    -
    ISV_DEBUGGER_SID: "isvDebuggerSid"

    The sid for the debugger configuration.

    +
    INSTANCE_URL: "instanceUrl"

    Deprecated

    Replaced by OrgConfigProperties.ORG_INSTANCE_URL in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config

    +
    ISV_DEBUGGER_SID: "isvDebuggerSid"

    The sid for the debugger configuration.

    Deprecated

    Replaced by OrgConfigProperties.ORG_ISV_DEBUGGER_SID in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config

    -
    ISV_DEBUGGER_URL: "isvDebuggerUrl"

    The url for the debugger configuration.

    +
    ISV_DEBUGGER_URL: "isvDebuggerUrl"

    The url for the debugger configuration.

    Deprecated

    Replaced by OrgConfigProperties.ORG_ISV_DEBUGGER_URL in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config

    -
    MAX_QUERY_LIMIT: "maxQueryLimit"

    allows users to override the 10,000 result query limit

    +
    MAX_QUERY_LIMIT: "maxQueryLimit"

    allows users to override the 10,000 result query limit

    Deprecated

    Replaced by OrgConfigProperties.ORG_MAX_QUERY_LIMIT in v3 https://github.com/forcedotcom/sfdx-core/blob/v3/MIGRATING_V2-V3.md#config

    -
    REST_DEPLOY: "restDeploy"

    Deprecated

    \ No newline at end of file +
    REST_DEPLOY: "restDeploy"

    Deprecated

    \ No newline at end of file diff --git a/enums/config_configAggregator.ConfigAggregator.Location.html b/enums/config_configAggregator.ConfigAggregator.Location.html index 9d4e151ad..12e4f50a4 100644 --- a/enums/config_configAggregator.ConfigAggregator.Location.html +++ b/enums/config_configAggregator.ConfigAggregator.Location.html @@ -1,8 +1,8 @@ Location | @salesforce/core

    An enum of all possible locations for a config value.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    ENVIRONMENT: "Environment"

    Represents environment variables.

    -
    GLOBAL: "Global"

    Represents the global config.

    -
    LOCAL: "Local"

    Represents the local project config.

    -
    \ No newline at end of file +
    GLOBAL: "Global"

    Represents the global config.

    +
    LOCAL: "Local"

    Represents the local project config.

    +
    \ No newline at end of file diff --git a/enums/config_envVars.EnvironmentVariable.html b/enums/config_envVars.EnvironmentVariable.html index 04fd4963e..d22b8b65b 100644 --- a/enums/config_envVars.EnvironmentVariable.html +++ b/enums/config_envVars.EnvironmentVariable.html @@ -1,4 +1,4 @@ -EnvironmentVariable | @salesforce/core

    Enumeration Members

    FORCE_OPEN_URL +EnvironmentVariable | @salesforce/core

    Enumeration Members

    FORCE_OPEN_URL: "FORCE_OPEN_URL"
    FORCE_SHOW_SPINNER: "FORCE_SHOW_SPINNER"
    FORCE_SPINNER_DELAY: "FORCE_SPINNER_DELAY"
    HTTPS_PROXY: "HTTPS_PROXY"
    HTTP_PROXY: "HTTP_PROXY"
    NODE_EXTRA_CA_CERTS: "NODE_EXTRA_CA_CERTS"
    NODE_TLS_REJECT_UNAUTHORIZED: "NODE_TLS_REJECT_UNAUTHORIZED"
    SFDX_ACCESS_TOKEN: "SFDX_ACCESS_TOKEN"
    SFDX_API_VERSION: "SFDX_API_VERSION"
    SFDX_AUDIENCE_URL: "SFDX_AUDIENCE_URL"
    SFDX_AUTOUPDATE_DISABLE: "SFDX_AUTOUPDATE_DISABLE"
    SFDX_CONTENT_TYPE: "SFDX_CONTENT_TYPE"
    SFDX_DEFAULTDEVHUBUSERNAME: "SFDX_DEFAULTDEVHUBUSERNAME"
    SFDX_DEFAULTUSERNAME: "SFDX_DEFAULTUSERNAME"
    SFDX_DISABLE_AUTOUPDATE: "SFDX_DISABLE_AUTOUPDATE"
    SFDX_DISABLE_LOG_FILE: "SFDX_DISABLE_LOG_FILE"
    SFDX_DISABLE_SOURCE_MEMBER_POLLING: "SFDX_DISABLE_SOURCE_MEMBER_POLLING"
    SFDX_DISABLE_TELEMETRY: "SFDX_DISABLE_TELEMETRY"
    SFDX_DNS_TIMEOUT: "SFDX_DNS_TIMEOUT"
    SFDX_DOMAIN_RETRY: "SFDX_DOMAIN_RETRY"
    SFDX_ENV: "SFDX_ENV"
    SFDX_IMPROVED_CODE_COVERAGE: "SFDX_IMPROVED_CODE_COVERAGE"
    SFDX_INSTALLER: "SFDX_INSTALLER"
    SFDX_INSTANCE_URL: "SFDX_INSTANCE_URL"
    SFDX_JSON_TO_STDOUT: "SFDX_JSON_TO_STDOUT"
    SFDX_LAZY_LOAD_MODULES: "SFDX_LAZY_LOAD_MODULES"
    SFDX_LOG_LEVEL: "SFDX_LOG_LEVEL"
    SFDX_LOG_ROTATION_COUNT: "SFDX_LOG_ROTATION_COUNT"
    SFDX_LOG_ROTATION_PERIOD: "SFDX_LOG_ROTATION_PERIOD"
    SFDX_MAX_QUERY_LIMIT: "SFDX_MAX_QUERY_LIMIT"
    SFDX_MDAPI_TEMP_DIR: "SFDX_MDAPI_TEMP_DIR"
    SFDX_NPM_REGISTRY: "SFDX_NPM_REGISTRY"
    SFDX_PRECOMPILE_ENABLE: "SFDX_PRECOMPILE_ENABLE"
    SFDX_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_CREATE: "SFDX_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_CREATE"
    SFDX_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_VERSION_CREATE: "SFDX_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_VERSION_CREATE"
    SFDX_REST_DEPLOY: "SFDX_REST_DEPLOY"
    SFDX_S3_HOST: "SFDX_S3_HOST"
    SFDX_SOURCE_MEMBER_POLLING_TIMEOUT: "SFDX_SOURCE_MEMBER_POLLING_TIMEOUT"
    SFDX_SOURCE_TRACKING_BATCH_SIZE: "SFDX_SOURCE_TRACKING_BATCH_SIZE"
    SFDX_UPDATE_INSTRUCTIONS: "SFDX_UPDATE_INSTRUCTIONS"
    SFDX_USE_GENERIC_UNIX_KEYCHAIN: "SFDX_USE_GENERIC_UNIX_KEYCHAIN"
    SFDX_USE_PROGRESS_BAR: "SFDX_USE_PROGRESS_BAR"
    SF_ACCESS_TOKEN: "SF_ACCESS_TOKEN"
    SF_AUDIENCE_URL: "SF_AUDIENCE_URL"
    SF_AUTOUPDATE_DISABLE: "SF_AUTOUPDATE_DISABLE"
    SF_CAPITALIZE_RECORD_TYPES: "SF_CAPITALIZE_RECORD_TYPES"
    SF_CONTENT_TYPE: "SF_CONTENT_TYPE"
    SF_DISABLE_AUTOUPDATE: "SF_DISABLE_AUTOUPDATE"
    SF_DISABLE_LOG_FILE: "SF_DISABLE_LOG_FILE"
    SF_DISABLE_SOURCE_MEMBER_POLLING: "SF_DISABLE_SOURCE_MEMBER_POLLING"
    SF_DISABLE_TELEMETRY: "SF_DISABLE_TELEMETRY"
    SF_DNS_TIMEOUT: "SF_DNS_TIMEOUT"
    SF_DOMAIN_RETRY: "SF_DOMAIN_RETRY"
    SF_ENV: "SF_ENV"
    SF_IMPROVED_CODE_COVERAGE: "SF_IMPROVED_CODE_COVERAGE"
    SF_INSTALLER: "SF_INSTALLER"
    SF_JSON_TO_STDOUT: "SF_JSON_TO_STDOUT"
    SF_LAZY_LOAD_MODULES: "SF_LAZY_LOAD_MODULES"
    SF_LOG_LEVEL: "SF_LOG_LEVEL"
    SF_LOG_ROTATION_COUNT: "SF_LOG_ROTATION_COUNT"
    SF_LOG_ROTATION_PERIOD: "SF_LOG_ROTATION_PERIOD"
    SF_MDAPI_TEMP_DIR: "SF_MDAPI_TEMP_DIR"
    SF_NPM_REGISTRY: "SF_NPM_REGISTRY"
    SF_ORG_API_VERSION: "SF_ORG_API_VERSION"
    SF_ORG_INSTANCE_URL: "SF_ORG_INSTANCE_URL"
    SF_ORG_MAX_QUERY_LIMIT: "SF_ORG_MAX_QUERY_LIMIT"
    SF_PRECOMPILE_ENABLE: "SF_PRECOMPILE_ENABLE"
    SF_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_CREATE: "SF_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_CREATE"
    SF_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_VERSION_CREATE: "SF_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_VERSION_CREATE"
    SF_S3_HOST: "SF_S3_HOST"
    SF_SOURCE_MEMBER_POLLING_TIMEOUT: "SF_SOURCE_MEMBER_POLLING_TIMEOUT"
    SF_SOURCE_TRACKING_BATCH_SIZE: "SF_SOURCE_TRACKING_BATCH_SIZE"
    SF_TARGET_DEV_HUB: "SF_TARGET_DEV_HUB"
    SF_TARGET_ORG: "SF_TARGET_ORG"
    SF_UPDATE_INSTRUCTIONS: "SF_UPDATE_INSTRUCTIONS"
    SF_USE_GENERIC_UNIX_KEYCHAIN: "SF_USE_GENERIC_UNIX_KEYCHAIN"
    SF_USE_PROGRESS_BAR: "SF_USE_PROGRESS_BAR"
    \ No newline at end of file +

    Enumeration Members

    FORCE_OPEN_URL: "FORCE_OPEN_URL"
    FORCE_SHOW_SPINNER: "FORCE_SHOW_SPINNER"
    FORCE_SPINNER_DELAY: "FORCE_SPINNER_DELAY"
    HTTPS_PROXY: "HTTPS_PROXY"
    HTTP_PROXY: "HTTP_PROXY"
    NODE_EXTRA_CA_CERTS: "NODE_EXTRA_CA_CERTS"
    NODE_TLS_REJECT_UNAUTHORIZED: "NODE_TLS_REJECT_UNAUTHORIZED"
    SFDX_ACCESS_TOKEN: "SFDX_ACCESS_TOKEN"
    SFDX_API_VERSION: "SFDX_API_VERSION"
    SFDX_AUDIENCE_URL: "SFDX_AUDIENCE_URL"
    SFDX_AUTOUPDATE_DISABLE: "SFDX_AUTOUPDATE_DISABLE"
    SFDX_CONTENT_TYPE: "SFDX_CONTENT_TYPE"
    SFDX_DEFAULTDEVHUBUSERNAME: "SFDX_DEFAULTDEVHUBUSERNAME"
    SFDX_DEFAULTUSERNAME: "SFDX_DEFAULTUSERNAME"
    SFDX_DISABLE_AUTOUPDATE: "SFDX_DISABLE_AUTOUPDATE"
    SFDX_DISABLE_LOG_FILE: "SFDX_DISABLE_LOG_FILE"
    SFDX_DISABLE_SOURCE_MEMBER_POLLING: "SFDX_DISABLE_SOURCE_MEMBER_POLLING"
    SFDX_DISABLE_TELEMETRY: "SFDX_DISABLE_TELEMETRY"
    SFDX_DNS_TIMEOUT: "SFDX_DNS_TIMEOUT"
    SFDX_DOMAIN_RETRY: "SFDX_DOMAIN_RETRY"
    SFDX_ENV: "SFDX_ENV"
    SFDX_IMPROVED_CODE_COVERAGE: "SFDX_IMPROVED_CODE_COVERAGE"
    SFDX_INSTALLER: "SFDX_INSTALLER"
    SFDX_INSTANCE_URL: "SFDX_INSTANCE_URL"
    SFDX_JSON_TO_STDOUT: "SFDX_JSON_TO_STDOUT"
    SFDX_LAZY_LOAD_MODULES: "SFDX_LAZY_LOAD_MODULES"
    SFDX_LOG_LEVEL: "SFDX_LOG_LEVEL"
    SFDX_LOG_ROTATION_COUNT: "SFDX_LOG_ROTATION_COUNT"
    SFDX_LOG_ROTATION_PERIOD: "SFDX_LOG_ROTATION_PERIOD"
    SFDX_MAX_QUERY_LIMIT: "SFDX_MAX_QUERY_LIMIT"
    SFDX_MDAPI_TEMP_DIR: "SFDX_MDAPI_TEMP_DIR"
    SFDX_NPM_REGISTRY: "SFDX_NPM_REGISTRY"
    SFDX_PRECOMPILE_ENABLE: "SFDX_PRECOMPILE_ENABLE"
    SFDX_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_CREATE: "SFDX_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_CREATE"
    SFDX_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_VERSION_CREATE: "SFDX_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_VERSION_CREATE"
    SFDX_REST_DEPLOY: "SFDX_REST_DEPLOY"
    SFDX_S3_HOST: "SFDX_S3_HOST"
    SFDX_SOURCE_MEMBER_POLLING_TIMEOUT: "SFDX_SOURCE_MEMBER_POLLING_TIMEOUT"
    SFDX_SOURCE_TRACKING_BATCH_SIZE: "SFDX_SOURCE_TRACKING_BATCH_SIZE"
    SFDX_UPDATE_INSTRUCTIONS: "SFDX_UPDATE_INSTRUCTIONS"
    SFDX_USE_GENERIC_UNIX_KEYCHAIN: "SFDX_USE_GENERIC_UNIX_KEYCHAIN"
    SFDX_USE_PROGRESS_BAR: "SFDX_USE_PROGRESS_BAR"
    SF_ACCESS_TOKEN: "SF_ACCESS_TOKEN"
    SF_AUDIENCE_URL: "SF_AUDIENCE_URL"
    SF_AUTOUPDATE_DISABLE: "SF_AUTOUPDATE_DISABLE"
    SF_CAPITALIZE_RECORD_TYPES: "SF_CAPITALIZE_RECORD_TYPES"
    SF_CONTENT_TYPE: "SF_CONTENT_TYPE"
    SF_DISABLE_AUTOUPDATE: "SF_DISABLE_AUTOUPDATE"
    SF_DISABLE_LOG_FILE: "SF_DISABLE_LOG_FILE"
    SF_DISABLE_SOURCE_MEMBER_POLLING: "SF_DISABLE_SOURCE_MEMBER_POLLING"
    SF_DISABLE_TELEMETRY: "SF_DISABLE_TELEMETRY"
    SF_DNS_TIMEOUT: "SF_DNS_TIMEOUT"
    SF_DOMAIN_RETRY: "SF_DOMAIN_RETRY"
    SF_ENV: "SF_ENV"
    SF_IMPROVED_CODE_COVERAGE: "SF_IMPROVED_CODE_COVERAGE"
    SF_INSTALLER: "SF_INSTALLER"
    SF_JSON_TO_STDOUT: "SF_JSON_TO_STDOUT"
    SF_LAZY_LOAD_MODULES: "SF_LAZY_LOAD_MODULES"
    SF_LOG_LEVEL: "SF_LOG_LEVEL"
    SF_LOG_ROTATION_COUNT: "SF_LOG_ROTATION_COUNT"
    SF_LOG_ROTATION_PERIOD: "SF_LOG_ROTATION_PERIOD"
    SF_MDAPI_TEMP_DIR: "SF_MDAPI_TEMP_DIR"
    SF_NPM_REGISTRY: "SF_NPM_REGISTRY"
    SF_ORG_API_VERSION: "SF_ORG_API_VERSION"
    SF_ORG_INSTANCE_URL: "SF_ORG_INSTANCE_URL"
    SF_ORG_MAX_QUERY_LIMIT: "SF_ORG_MAX_QUERY_LIMIT"
    SF_PRECOMPILE_ENABLE: "SF_PRECOMPILE_ENABLE"
    SF_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_CREATE: "SF_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_CREATE"
    SF_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_VERSION_CREATE: "SF_PROJECT_AUTOUPDATE_DISABLE_FOR_PACKAGE_VERSION_CREATE"
    SF_S3_HOST: "SF_S3_HOST"
    SF_SOURCE_MEMBER_POLLING_TIMEOUT: "SF_SOURCE_MEMBER_POLLING_TIMEOUT"
    SF_SOURCE_TRACKING_BATCH_SIZE: "SF_SOURCE_TRACKING_BATCH_SIZE"
    SF_TARGET_DEV_HUB: "SF_TARGET_DEV_HUB"
    SF_TARGET_ORG: "SF_TARGET_ORG"
    SF_UPDATE_INSTRUCTIONS: "SF_UPDATE_INSTRUCTIONS"
    SF_USE_GENERIC_UNIX_KEYCHAIN: "SF_USE_GENERIC_UNIX_KEYCHAIN"
    SF_USE_PROGRESS_BAR: "SF_USE_PROGRESS_BAR"
    \ No newline at end of file diff --git a/enums/config_sandboxOrgConfig.SandboxOrgConfig.Fields.html b/enums/config_sandboxOrgConfig.SandboxOrgConfig.Fields.html index f1288afa6..042c7dd44 100644 --- a/enums/config_sandboxOrgConfig.SandboxOrgConfig.Fields.html +++ b/enums/config_sandboxOrgConfig.SandboxOrgConfig.Fields.html @@ -1,3 +1,3 @@ -Fields | @salesforce/core

    Enumeration Members

    PROD_ORG_USERNAME +Fields | @salesforce/core

    Enumeration Members

    Enumeration Members

    PROD_ORG_USERNAME: "prodOrgUsername"

    The username of the user who created the sandbox.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/enums/global.Mode.html b/enums/global.Mode.html index c5cbf222c..cdc89e7b1 100644 --- a/enums/global.Mode.html +++ b/enums/global.Mode.html @@ -1,8 +1,8 @@ Mode | @salesforce/core

    Represents an environment mode. Supports production, development, demo, and test with the default mode being production.

    To set the mode, export SFDX_ENV=<mode> in your current environment.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    DEMO: "demo"
    DEVELOPMENT: "development"
    PRODUCTION: "production"
    TEST: "test"
    \ No newline at end of file +

    Enumeration Members

    DEMO: "demo"
    DEVELOPMENT: "development"
    PRODUCTION: "production"
    TEST: "test"
    \ No newline at end of file diff --git a/enums/logger_logger.LoggerLevel.html b/enums/logger_logger.LoggerLevel.html index 7183b449b..e0e8012d7 100644 --- a/enums/logger_logger.LoggerLevel.html +++ b/enums/logger_logger.LoggerLevel.html @@ -1,9 +1,9 @@ LoggerLevel | @salesforce/core

    Standard Logger levels.

    See Logger Levels

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    DEBUG: 20
    ERROR: 50
    FATAL: 60
    INFO: 30
    TRACE: 10
    WARN: 40
    \ No newline at end of file +

    Enumeration Members

    DEBUG: 20
    ERROR: 50
    FATAL: 60
    INFO: 30
    TRACE: 10
    WARN: 40
    \ No newline at end of file diff --git a/enums/org_org.Org.Fields.html b/enums/org_org.Org.Fields.html index c1f7942e1..b9e381e1a 100644 --- a/enums/org_org.Org.Fields.html +++ b/enums/org_org.Org.Fields.html @@ -1,5 +1,5 @@ Fields | @salesforce/core

    Org Fields.

    -

    Enumeration Members

    Enumeration Members

    ALIAS: "alias"

    The org alias.

    -
    CREATED: "created"
    CREATED_ORG_INSTANCE: "createdOrgInstance"

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

    -
    DEV_HUB_USERNAME: "devHubUsername"

    The username of the dev hub org that created this org. Only populated for scratch orgs.

    -
    INSTANCE_NAME: "instanceName"
    INSTANCE_URL: "instanceUrl"

    The full url of the instance the org lives on.

    -
    IS_DEV_HUB: "isDevHub"

    Is the current org a dev hub org. e.g. They have access to the ScratchOrgInfo object.

    -
    IS_SANDBOX: "isSandbox"

    Is the current org a sandbox (not a scratch org on a non-prod instance), but an actual Sandbox org). e.g. Organization has IsSandbox == true and TrialExpirationDate == null.

    -
    IS_SCRATCH: "isScratch"

    Is the current org a scratch org. e.g. Organization has IsSandbox == true and TrialExpirationDate != null.

    -
    LOGIN_URL: "loginUrl"

    The login url of the org. e.g. https://login.salesforce.com or https://test.salesforce.com.

    -
    NAME: "name"
    NAMESPACE_PREFIX: "namespacePrefix"
    ORG_ID: "orgId"

    The org ID.

    -
    SNAPSHOT: "snapshot"

    The snapshot used to create the scratch org.

    -
    STATUS: "status"

    The OrgStatus of the org.

    -
    TRACKS_SOURCE: "tracksSource"

    true: the org supports and wants source tracking +

    CREATED: "created"
    CREATED_ORG_INSTANCE: "createdOrgInstance"

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

    +
    DEV_HUB_USERNAME: "devHubUsername"

    The username of the dev hub org that created this org. Only populated for scratch orgs.

    +
    INSTANCE_NAME: "instanceName"
    INSTANCE_URL: "instanceUrl"

    The full url of the instance the org lives on.

    +
    IS_DEV_HUB: "isDevHub"

    Is the current org a dev hub org. e.g. They have access to the ScratchOrgInfo object.

    +
    IS_SANDBOX: "isSandbox"

    Is the current org a sandbox (not a scratch org on a non-prod instance), but an actual Sandbox org). e.g. Organization has IsSandbox == true and TrialExpirationDate == null.

    +
    IS_SCRATCH: "isScratch"

    Is the current org a scratch org. e.g. Organization has IsSandbox == true and TrialExpirationDate != null.

    +
    LOGIN_URL: "loginUrl"

    The login url of the org. e.g. https://login.salesforce.com or https://test.salesforce.com.

    +
    NAME: "name"
    NAMESPACE_PREFIX: "namespacePrefix"
    ORG_ID: "orgId"

    The org ID.

    +
    SNAPSHOT: "snapshot"

    The snapshot used to create the scratch org.

    +
    STATUS: "status"

    The OrgStatus of the org.

    +
    TRACKS_SOURCE: "tracksSource"

    true: the org supports and wants source tracking false: the org opted out of tracking or can't support it

    -
    TRIAL_EXPIRATION_DATE: "trailExpirationDate"
    \ No newline at end of file +
    TRIAL_EXPIRATION_DATE: "trailExpirationDate"
    \ No newline at end of file diff --git a/enums/org_org.Org.Status.html b/enums/org_org.Org.Status.html index cc5d9156c..ff9894982 100644 --- a/enums/org_org.Org.Status.html +++ b/enums/org_org.Org.Status.html @@ -1,10 +1,10 @@ Status | @salesforce/core

    Scratch Org status.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    ACTIVE: "ACTIVE"

    The scratch org is active.

    -
    EXPIRED: "EXPIRED"

    The scratch org has expired.

    -
    MISSING: "MISSING"

    The dev hub configuration is reporting an active Scratch org but the AuthInfo cannot be found.

    -
    UNKNOWN: "UNKNOWN"

    The org is a scratch Org but no dev hub is indicated.

    -
    \ No newline at end of file +
    EXPIRED: "EXPIRED"

    The scratch org has expired.

    +
    MISSING: "MISSING"

    The dev hub configuration is reporting an active Scratch org but the AuthInfo cannot be found.

    +
    UNKNOWN: "UNKNOWN"

    The org is a scratch Org but no dev hub is indicated.

    +
    \ No newline at end of file diff --git a/enums/org_org.OrgTypes.html b/enums/org_org.OrgTypes.html index 1f26ab522..fdd5f7fc0 100644 --- a/enums/org_org.OrgTypes.html +++ b/enums/org_org.OrgTypes.html @@ -1,3 +1,3 @@ -OrgTypes | @salesforce/core

    Enumeration Members

    Sandbox +OrgTypes | @salesforce/core

    Enumeration Members

    Enumeration Members

    Sandbox: "sandbox"
    Scratch: "scratch"
    \ No newline at end of file +

    Enumeration Members

    Sandbox: "sandbox"
    Scratch: "scratch"
    \ No newline at end of file diff --git a/enums/org_org.SandboxEvents.html b/enums/org_org.SandboxEvents.html index 547222705..7ee400c66 100644 --- a/enums/org_org.SandboxEvents.html +++ b/enums/org_org.SandboxEvents.html @@ -1,7 +1,7 @@ -SandboxEvents | @salesforce/core

    Enumeration SandboxEvents

    Enumeration Members

    EVENT_ASYNC_RESULT +SandboxEvents | @salesforce/core

    Enumeration SandboxEvents

    Enumeration Members

    EVENT_ASYNC_RESULT: "asyncResult"
    EVENT_AUTH: "auth"
    EVENT_MULTIPLE_SBX_PROCESSES: "multipleMatchingSbxProcesses"
    EVENT_RESULT: "result"
    EVENT_RESUME: "resume"
    EVENT_STATUS: "status"
    \ No newline at end of file +

    Enumeration Members

    EVENT_ASYNC_RESULT: "asyncResult"
    EVENT_AUTH: "auth"
    EVENT_MULTIPLE_SBX_PROCESSES: "multipleMatchingSbxProcesses"
    EVENT_RESULT: "result"
    EVENT_RESUME: "resume"
    EVENT_STATUS: "status"
    \ No newline at end of file diff --git a/enums/org_orgConfigProperties.OrgConfigProperties.html b/enums/org_orgConfigProperties.OrgConfigProperties.html index a40d341e0..ae2adaa56 100644 --- a/enums/org_orgConfigProperties.OrgConfigProperties.html +++ b/enums/org_orgConfigProperties.OrgConfigProperties.html @@ -1,4 +1,4 @@ -OrgConfigProperties | @salesforce/core

    Enumeration Members

    ORG_API_VERSION +OrgConfigProperties | @salesforce/core

    Enumeration Members

    ORG_API_VERSION: "org-api-version"

    The api version

    -
    ORG_CAPITALIZE_RECORD_TYPES: "org-capitalize-record-types"

    Capitalize record types when deploying scratch org settings

    -
    ORG_CUSTOM_METADATA_TEMPLATES: "org-custom-metadata-templates"

    Custom templates repo or local location.

    -
    ORG_INSTANCE_URL: "org-instance-url"

    The instance url of the org.

    -
    ORG_ISV_DEBUGGER_SID: "org-isv-debugger-sid"

    The sid for the debugger configuration.

    -
    ORG_ISV_DEBUGGER_URL: "org-isv-debugger-url"

    The url for the debugger configuration.

    -
    ORG_MAX_QUERY_LIMIT: "org-max-query-limit"

    Allows users to override the 10,000 result query limit.

    -
    TARGET_DEV_HUB: "target-dev-hub"

    Username associated with the default dev hub org.

    -
    TARGET_ORG: "target-org"

    Username associate with the default org.

    -
    \ No newline at end of file +
    ORG_CAPITALIZE_RECORD_TYPES: "org-capitalize-record-types"

    Capitalize record types when deploying scratch org settings

    +
    ORG_CUSTOM_METADATA_TEMPLATES: "org-custom-metadata-templates"

    Custom templates repo or local location.

    +
    ORG_INSTANCE_URL: "org-instance-url"

    The instance url of the org.

    +
    ORG_ISV_DEBUGGER_SID: "org-isv-debugger-sid"

    The sid for the debugger configuration.

    +
    ORG_ISV_DEBUGGER_URL: "org-isv-debugger-url"

    The url for the debugger configuration.

    +
    ORG_MAX_QUERY_LIMIT: "org-max-query-limit"

    Allows users to override the 10,000 result query limit.

    +
    TARGET_DEV_HUB: "target-dev-hub"

    Username associated with the default dev hub org.

    +
    TARGET_ORG: "target-org"

    Username associate with the default org.

    +
    \ No newline at end of file diff --git a/enums/org_scratchOrgSettingsGenerator.RequestStatus.html b/enums/org_scratchOrgSettingsGenerator.RequestStatus.html index f58a0ada0..c8a671d27 100644 --- a/enums/org_scratchOrgSettingsGenerator.RequestStatus.html +++ b/enums/org_scratchOrgSettingsGenerator.RequestStatus.html @@ -1,8 +1,8 @@ -RequestStatus | @salesforce/core

    Enumeration Members

    Canceled +RequestStatus | @salesforce/core

    Enumeration Members

    Canceled: "Canceled"
    Canceling: "Canceling"
    Failed: "Failed"
    InProgress: "InProgress"
    Pending: "Pending"
    Succeeded: "Succeeded"
    SucceededPartial: "SucceededPartial"
    \ No newline at end of file +

    Enumeration Members

    Canceled: "Canceled"
    Canceling: "Canceling"
    Failed: "Failed"
    InProgress: "InProgress"
    Pending: "Pending"
    Succeeded: "Succeeded"
    SucceededPartial: "SucceededPartial"
    \ No newline at end of file diff --git a/enums/status_streamingClient.StreamingClient.ConnectionState.html b/enums/status_streamingClient.StreamingClient.ConnectionState.html index 1d4d06165..062755aa5 100644 --- a/enums/status_streamingClient.StreamingClient.ConnectionState.html +++ b/enums/status_streamingClient.StreamingClient.ConnectionState.html @@ -1,5 +1,5 @@ ConnectionState | @salesforce/core

    Connection state

    Enumeration Members

    Enumeration Members

    Enumeration Members

    CONNECTED: 0

    Used to indicated that the streaming client is connected.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/enums/status_streamingClient.StreamingClient.TimeoutErrorType.html b/enums/status_streamingClient.StreamingClient.TimeoutErrorType.html index 852a4df6b..531cd6a0e 100644 --- a/enums/status_streamingClient.StreamingClient.TimeoutErrorType.html +++ b/enums/status_streamingClient.StreamingClient.TimeoutErrorType.html @@ -1,6 +1,6 @@ TimeoutErrorType | @salesforce/core

    Indicators to test error names for StreamingTimeouts

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    HANDSHAKE: "GenericHandshakeTimeoutError"

    To indicate the error occurred on handshake

    -
    SUBSCRIBE: "GenericTimeoutError"

    To indicate the error occurred on subscribe

    -
    \ No newline at end of file +
    SUBSCRIBE: "GenericTimeoutError"

    To indicate the error occurred on subscribe

    +
    \ No newline at end of file diff --git a/enums/testSetup.StreamingMockSubscriptionCall.html b/enums/testSetup.StreamingMockSubscriptionCall.html index da0e1c92c..1dbb31a04 100644 --- a/enums/testSetup.StreamingMockSubscriptionCall.html +++ b/enums/testSetup.StreamingMockSubscriptionCall.html @@ -1,5 +1,5 @@ StreamingMockSubscriptionCall | @salesforce/core

    Enumeration StreamingMockSubscriptionCall

    A helper to determine if a subscription will use callback or errorback. Enable errback to simulate a subscription failure.

    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    CALLBACK: 0
    ERRORBACK: 1
    \ No newline at end of file +

    Enumeration Members

    CALLBACK: 0
    ERRORBACK: 1
    \ No newline at end of file diff --git a/functions/config_lwwMap.stateFromContents.html b/functions/config_lwwMap.stateFromContents.html index 37b2b81a6..263c00d63 100644 --- a/functions/config_lwwMap.stateFromContents.html +++ b/functions/config_lwwMap.stateFromContents.html @@ -1,4 +1,4 @@ stateFromContents | @salesforce/core
    • Type Parameters

      Parameters

      • contents: P

        object aligning with ConfigContents

      • Optional timestamp: bigint

        a bigInt that sets the timestamp. Defaults to the current time construct a LWWState from an object

        -

      Returns LWWState<P>

    \ No newline at end of file +

    Returns LWWState<P>

    \ No newline at end of file diff --git a/functions/lifecycleEvents.cloneUniqueListeners.html b/functions/lifecycleEvents.cloneUniqueListeners.html index 01ed95390..9ce74973a 100644 --- a/functions/lifecycleEvents.cloneUniqueListeners.html +++ b/functions/lifecycleEvents.cloneUniqueListeners.html @@ -1 +1 @@ -cloneUniqueListeners | @salesforce/core
    \ No newline at end of file +cloneUniqueListeners | @salesforce/core
    \ No newline at end of file diff --git a/functions/logger_cleanup.cleanup.html b/functions/logger_cleanup.cleanup.html index 3f810eb3e..b748bbd3e 100644 --- a/functions/logger_cleanup.cleanup.html +++ b/functions/logger_cleanup.cleanup.html @@ -3,4 +3,4 @@ based on CLEAN_ODDS, it could exit OR delete some old log files

    to start this without waiting, use void cleanup()

    accepts params to override the default behavior (used to cleanup huge log file during perf tests)

    -

    Parameters

    • maxMs: number = MAX_FILE_AGE_MS
    • force: boolean = false

    Returns Promise<void>

    \ No newline at end of file +

    Parameters

    • maxMs: number = MAX_FILE_AGE_MS
    • force: boolean = false

    Returns Promise<void>

    \ No newline at end of file diff --git a/functions/logger_cleanup.getOldLogFiles.html b/functions/logger_cleanup.getOldLogFiles.html index 308432b93..bb0d34441 100644 --- a/functions/logger_cleanup.getOldLogFiles.html +++ b/functions/logger_cleanup.getOldLogFiles.html @@ -1 +1 @@ -getOldLogFiles | @salesforce/core
    • Parameters

      • files: string[]
      • maxMs: number = MAX_FILE_AGE_MS

      Returns string[]

    \ No newline at end of file +getOldLogFiles | @salesforce/core
    • Parameters

      • files: string[]
      • maxMs: number = MAX_FILE_AGE_MS

      Returns string[]

    \ No newline at end of file diff --git a/functions/logger_filters.filterSecrets.html b/functions/logger_filters.filterSecrets.html index 1e706c955..4afae3fbd 100644 --- a/functions/logger_filters.filterSecrets.html +++ b/functions/logger_filters.filterSecrets.html @@ -1,2 +1,2 @@ filterSecrets | @salesforce/core
    • Parameters

      • Rest ...args: unknown[]

        you *probably are passing this an object, but it can handle any type

        -

      Returns unknown

    \ No newline at end of file +

    Returns unknown

    \ No newline at end of file diff --git a/functions/logger_logger.computeLevel.html b/functions/logger_logger.computeLevel.html index 26a089655..d80795e62 100644 --- a/functions/logger_logger.computeLevel.html +++ b/functions/logger_logger.computeLevel.html @@ -1 +1 @@ -computeLevel | @salesforce/core
    • Parameters

      • Optional optionsLevel: string | number

      Returns string

    \ No newline at end of file +computeLevel | @salesforce/core
    • Parameters

      • Optional optionsLevel: string | number

      Returns string

    \ No newline at end of file diff --git a/functions/logger_transformStream.default.html b/functions/logger_transformStream.default.html index e044e97e8..989fd66db 100644 --- a/functions/logger_transformStream.default.html +++ b/functions/logger_transformStream.default.html @@ -1 +1 @@ -default | @salesforce/core
    \ No newline at end of file +default | @salesforce/core
    \ No newline at end of file diff --git a/functions/messageTransformer.messageTransformer.html b/functions/messageTransformer.messageTransformer.html index 26f9e4792..86b920e4c 100644 --- a/functions/messageTransformer.messageTransformer.html +++ b/functions/messageTransformer.messageTransformer.html @@ -1,2 +1,2 @@ messageTransformer | @salesforce/core
    • Experimental

      transforms messages references from dynamic run-time to static compile-time values

      -

      Returns TransformerFactory<SourceFile>

    \ No newline at end of file +

    Returns TransformerFactory<SourceFile>

    \ No newline at end of file diff --git a/functions/org_org.sandboxIsResumable.html b/functions/org_org.sandboxIsResumable.html index b189f7c69..64973b8d9 100644 --- a/functions/org_org.sandboxIsResumable.html +++ b/functions/org_org.sandboxIsResumable.html @@ -1 +1 @@ -sandboxIsResumable | @salesforce/core
    • Parameters

      • value: string

      Returns boolean

    \ No newline at end of file +sandboxIsResumable | @salesforce/core
    • Parameters

      • value: string

      Returns boolean

    \ No newline at end of file diff --git a/functions/org_scratchOrgCreate.scratchOrgCreate.html b/functions/org_scratchOrgCreate.scratchOrgCreate.html index 6d7cd43a3..2d54bb9a8 100644 --- a/functions/org_scratchOrgCreate.scratchOrgCreate.html +++ b/functions/org_scratchOrgCreate.scratchOrgCreate.html @@ -1 +1 @@ -scratchOrgCreate | @salesforce/core
    \ No newline at end of file +scratchOrgCreate | @salesforce/core
    \ No newline at end of file diff --git a/functions/org_scratchOrgCreate.scratchOrgResume.html b/functions/org_scratchOrgCreate.scratchOrgResume.html index ae3853aec..c359a21ff 100644 --- a/functions/org_scratchOrgCreate.scratchOrgResume.html +++ b/functions/org_scratchOrgCreate.scratchOrgResume.html @@ -1 +1 @@ -scratchOrgResume | @salesforce/core
    \ No newline at end of file +scratchOrgResume | @salesforce/core
    \ No newline at end of file diff --git a/functions/org_scratchOrgErrorCodes.checkScratchOrgInfoForErrors.html b/functions/org_scratchOrgErrorCodes.checkScratchOrgInfoForErrors.html index 03c3fab6d..55c9227fc 100644 --- a/functions/org_scratchOrgErrorCodes.checkScratchOrgInfoForErrors.html +++ b/functions/org_scratchOrgErrorCodes.checkScratchOrgInfoForErrors.html @@ -1 +1 @@ -checkScratchOrgInfoForErrors | @salesforce/core
    \ No newline at end of file +checkScratchOrgInfoForErrors | @salesforce/core
    \ No newline at end of file diff --git a/functions/org_scratchOrgErrorCodes.validateScratchOrgInfoForResume.html b/functions/org_scratchOrgErrorCodes.validateScratchOrgInfoForResume.html index bc9b17444..87528cd02 100644 --- a/functions/org_scratchOrgErrorCodes.validateScratchOrgInfoForResume.html +++ b/functions/org_scratchOrgErrorCodes.validateScratchOrgInfoForResume.html @@ -1 +1 @@ -validateScratchOrgInfoForResume | @salesforce/core
    \ No newline at end of file +validateScratchOrgInfoForResume | @salesforce/core
    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoApi.authorizeScratchOrg.html b/functions/org_scratchOrgInfoApi.authorizeScratchOrg.html index e43b3ed13..42500d4e6 100644 --- a/functions/org_scratchOrgInfoApi.authorizeScratchOrg.html +++ b/functions/org_scratchOrgInfoApi.authorizeScratchOrg.html @@ -4,4 +4,4 @@ clientSecret - The OAuth client secret. May be null for JWT OAuth flow. signupTargetLoginUrl - Login url override retry - auth retry attempts

    -

    Parameters

    • options: {
          clientSecret?: string;
          hubOrg: Org;
          retry?: number;
          scratchOrgInfoComplete: ScratchOrgInfo;
          signupTargetLoginUrl?: string;
      }
      • Optional clientSecret?: string
      • hubOrg: Org
      • Optional retry?: number
      • scratchOrgInfoComplete: ScratchOrgInfo
      • Optional signupTargetLoginUrl?: string

    Returns Promise<AuthInfo>

    \ No newline at end of file +

    Parameters

    • options: {
          clientSecret?: string;
          hubOrg: Org;
          retry?: number;
          scratchOrgInfoComplete: ScratchOrgInfo;
          signupTargetLoginUrl?: string;
      }
      • Optional clientSecret?: string
      • hubOrg: Org
      • Optional retry?: number
      • scratchOrgInfoComplete: ScratchOrgInfo
      • Optional signupTargetLoginUrl?: string

    Returns Promise<AuthInfo>

    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoApi.deploySettings.html b/functions/org_scratchOrgInfoApi.deploySettings.html index deb840537..a07e894a1 100644 --- a/functions/org_scratchOrgInfoApi.deploySettings.html +++ b/functions/org_scratchOrgInfoApi.deploySettings.html @@ -2,4 +2,4 @@

    Parameters

    • scratchOrg: Org

      an instance of the Org class

    • orgSettings: default

      an instance of the SettingsGenerator class

    • apiVersion: string

      the api version (used when created the package.xml)

      -
    • timeout: Duration = ...

    Returns Promise<void>

    \ No newline at end of file +
  • timeout: Duration = ...
  • Returns Promise<void>

    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoApi.pollForScratchOrgInfo.html b/functions/org_scratchOrgInfoApi.pollForScratchOrgInfo.html index 1ab9db592..11f3b23d7 100644 --- a/functions/org_scratchOrgInfoApi.pollForScratchOrgInfo.html +++ b/functions/org_scratchOrgInfoApi.pollForScratchOrgInfo.html @@ -1,4 +1,4 @@ pollForScratchOrgInfo | @salesforce/core
    • This retrieves the ScratchOrgInfo, polling until the status is Active or Error

      Parameters

      • hubOrg: Org
      • scratchOrgInfoId: string

        the id of the scratchOrgInfo that we are retrieving

      • timeout: Duration = ...

        A Duration object

        -

      Returns Promise<ScratchOrgInfo>

    \ No newline at end of file +

    Returns Promise<ScratchOrgInfo>

    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoApi.queryScratchOrgInfo.html b/functions/org_scratchOrgInfoApi.queryScratchOrgInfo.html index cf4401a52..747e23670 100644 --- a/functions/org_scratchOrgInfoApi.queryScratchOrgInfo.html +++ b/functions/org_scratchOrgInfoApi.queryScratchOrgInfo.html @@ -1,4 +1,4 @@ queryScratchOrgInfo | @salesforce/core
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoApi.requestScratchOrgCreation.html b/functions/org_scratchOrgInfoApi.requestScratchOrgCreation.html index 23420d96b..a29f225f7 100644 --- a/functions/org_scratchOrgInfoApi.requestScratchOrgCreation.html +++ b/functions/org_scratchOrgInfoApi.requestScratchOrgCreation.html @@ -2,4 +2,4 @@

    Parameters

    • hubOrg: Org

      the environment hub org

    • scratchOrgRequest: ScratchOrgInfo

      An object containing the fields of the ScratchOrgInfo

    • settings: default

      An object containing org settings

      -

    Returns Promise<SaveResult>

    \ No newline at end of file +

    Returns Promise<SaveResult>

    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoApi.resolveUrl.html b/functions/org_scratchOrgInfoApi.resolveUrl.html index f4e0e6c84..76c2dd0bf 100644 --- a/functions/org_scratchOrgInfoApi.resolveUrl.html +++ b/functions/org_scratchOrgInfoApi.resolveUrl.html @@ -1,4 +1,4 @@ resolveUrl | @salesforce/core
    • Makes sure the scratch org's instanceUrl is resolvable (that is, DNS is ready)

      Parameters

      • scratchOrgAuthInfo: AuthInfo

        an AuthInfo class from the scratch org

      Returns Promise<AuthInfo>

      AuthInfo

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoApi.updateRevisionCounterToZero.html b/functions/org_scratchOrgInfoApi.updateRevisionCounterToZero.html index 6ec29cf7a..e9ca4753e 100644 --- a/functions/org_scratchOrgInfoApi.updateRevisionCounterToZero.html +++ b/functions/org_scratchOrgInfoApi.updateRevisionCounterToZero.html @@ -1 +1 @@ -updateRevisionCounterToZero | @salesforce/core
    \ No newline at end of file +updateRevisionCounterToZero | @salesforce/core
    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoGenerator.generateScratchOrgInfo.html b/functions/org_scratchOrgInfoGenerator.generateScratchOrgInfo.html index b7017927a..3ecf5bc35 100644 --- a/functions/org_scratchOrgInfoGenerator.generateScratchOrgInfo.html +++ b/functions/org_scratchOrgInfoGenerator.generateScratchOrgInfo.html @@ -1,2 +1,2 @@ generateScratchOrgInfo | @salesforce/core
    \ No newline at end of file +

    Parameters

    • __namedParameters: {
          hubOrg: Org;
          ignoreAncestorIds?: boolean;
          nonamespace?: boolean;
          scratchOrgInfoPayload: ScratchOrgInfoPayload;
      }
      • hubOrg: Org
      • Optional ignoreAncestorIds?: boolean
      • Optional nonamespace?: boolean
      • scratchOrgInfoPayload: ScratchOrgInfoPayload

    Returns Promise<ScratchOrgInfoPayload>

    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoGenerator.getAncestorIds.html b/functions/org_scratchOrgInfoGenerator.getAncestorIds.html index 5f5bc097c..94f665c69 100644 --- a/functions/org_scratchOrgInfoGenerator.getAncestorIds.html +++ b/functions/org_scratchOrgInfoGenerator.getAncestorIds.html @@ -2,4 +2,4 @@

    Parameters

    Returns Promise<string>

    \ No newline at end of file +

    Returns Promise<string>

    \ No newline at end of file diff --git a/functions/org_scratchOrgInfoGenerator.getScratchOrgInfoPayload.html b/functions/org_scratchOrgInfoGenerator.getScratchOrgInfoPayload.html index 84266bd24..b7d488083 100644 --- a/functions/org_scratchOrgInfoGenerator.getScratchOrgInfoPayload.html +++ b/functions/org_scratchOrgInfoGenerator.getScratchOrgInfoPayload.html @@ -9,4 +9,4 @@

    Parameters

    • options: {
          connectedAppConsumerKey?: string;
          definitionfile?: string;
          definitionjson?: string;
          durationDays: number;
          noancestors?: boolean;
          nonamespace?: boolean;
          orgConfig?: Record<string, unknown>;
      }
      • Optional connectedAppConsumerKey?: string
      • Optional definitionfile?: string
      • Optional definitionjson?: string
      • durationDays: number
      • Optional noancestors?: boolean
      • Optional nonamespace?: boolean
      • Optional orgConfig?: Record<string, unknown>

    Returns Promise<{
        ignoreAncestorIds: boolean;
        scratchOrgInfoPayload: ScratchOrgInfoPayload;
        warnings: string[];
    }>

    scratchOrgInfoPayload: ScratchOrgInfoPayload; ignoreAncestorIds: boolean; warnings: string[];

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/org_scratchOrgLifecycleEvents.emit.html b/functions/org_scratchOrgLifecycleEvents.emit.html index ab62465dc..4a89ec531 100644 --- a/functions/org_scratchOrgLifecycleEvents.emit.html +++ b/functions/org_scratchOrgLifecycleEvents.emit.html @@ -1 +1 @@ -emit | @salesforce/core
    \ No newline at end of file +emit | @salesforce/core
    \ No newline at end of file diff --git a/functions/org_scratchOrgLifecycleEvents.emitPostOrgCreate.html b/functions/org_scratchOrgLifecycleEvents.emitPostOrgCreate.html index db05c3644..95d705a44 100644 --- a/functions/org_scratchOrgLifecycleEvents.emitPostOrgCreate.html +++ b/functions/org_scratchOrgLifecycleEvents.emitPostOrgCreate.html @@ -1 +1 @@ -emitPostOrgCreate | @salesforce/core
    \ No newline at end of file +emitPostOrgCreate | @salesforce/core
    \ No newline at end of file diff --git a/functions/org_scratchOrgSettingsGenerator.createObjectFileContent.html b/functions/org_scratchOrgSettingsGenerator.createObjectFileContent.html index c1977c6f5..280a48c9a 100644 --- a/functions/org_scratchOrgSettingsGenerator.createObjectFileContent.html +++ b/functions/org_scratchOrgSettingsGenerator.createObjectFileContent.html @@ -1 +1 @@ -createObjectFileContent | @salesforce/core
    • Parameters

      • __namedParameters: {
            allBusinessProcesses?: string[];
            allRecordTypes?: string[];
            apiVersion: string;
            objectSettingsData?: {
                [objectName: string]: ObjectSetting;
            };
            settingData?: Record<string, unknown>;
        }
        • Optional allBusinessProcesses?: string[]
        • Optional allRecordTypes?: string[]
        • apiVersion: string
        • Optional objectSettingsData?: {
              [objectName: string]: ObjectSetting;
          }
        • Optional settingData?: Record<string, unknown>

      Returns PackageFile

    \ No newline at end of file +createObjectFileContent | @salesforce/core
    • Parameters

      • __namedParameters: {
            allBusinessProcesses?: string[];
            allRecordTypes?: string[];
            apiVersion: string;
            objectSettingsData?: {
                [objectName: string]: ObjectSetting;
            };
            settingData?: Record<string, unknown>;
        }
        • Optional allBusinessProcesses?: string[]
        • Optional allRecordTypes?: string[]
        • apiVersion: string
        • Optional objectSettingsData?: {
              [objectName: string]: ObjectSetting;
          }
        • Optional settingData?: Record<string, unknown>

      Returns PackageFile

    \ No newline at end of file diff --git a/functions/org_scratchOrgSettingsGenerator.createRecordTypeAndBusinessProcessFileContent.html b/functions/org_scratchOrgSettingsGenerator.createRecordTypeAndBusinessProcessFileContent.html index f70bea02e..b2046f524 100644 --- a/functions/org_scratchOrgSettingsGenerator.createRecordTypeAndBusinessProcessFileContent.html +++ b/functions/org_scratchOrgSettingsGenerator.createRecordTypeAndBusinessProcessFileContent.html @@ -1 +1 @@ -createRecordTypeAndBusinessProcessFileContent | @salesforce/core
    • Parameters

      • objectName: string
      • json: Record<string, unknown>
      • allRecordTypes: string[]
      • allBusinessProcesses: string[]
      • capitalizeRecordTypes: boolean

      Returns JsonMap

    \ No newline at end of file +createRecordTypeAndBusinessProcessFileContent | @salesforce/core
    • Parameters

      • objectName: string
      • json: Record<string, unknown>
      • allRecordTypes: string[]
      • allBusinessProcesses: string[]
      • capitalizeRecordTypes: boolean

      Returns JsonMap

    \ No newline at end of file diff --git a/functions/sfProject.isNamedPackagingDirectory.html b/functions/sfProject.isNamedPackagingDirectory.html index 0e78904ef..89b89d739 100644 --- a/functions/sfProject.isNamedPackagingDirectory.html +++ b/functions/sfProject.isNamedPackagingDirectory.html @@ -1,2 +1,2 @@ isNamedPackagingDirectory | @salesforce/core

    Function isNamedPackagingDirectory

    • differentiate between the Base PackageDir (path, maybe default) and the Packaging version (package and maybe a LOT of other fields) by whether is has the package property

      -

      Parameters

      Returns packageDir is NamedPackagingDir

    \ No newline at end of file +

    Parameters

    Returns packageDir is NamedPackagingDir

    \ No newline at end of file diff --git a/functions/sfProject.isPackagingDirectory.html b/functions/sfProject.isPackagingDirectory.html index 4871a14f8..f100f91c7 100644 --- a/functions/sfProject.isPackagingDirectory.html +++ b/functions/sfProject.isPackagingDirectory.html @@ -1,2 +1,2 @@ isPackagingDirectory | @salesforce/core
    • differentiate between the Base PackageDir (path, maybe default) and the Packaging version (package and maybe a LOT of other fields) by whether is has the package property

      -

      Parameters

      • packageDir: PackageDir

      Returns packageDir is PackagePackageDir

    \ No newline at end of file +

    Parameters

    • packageDir: PackageDir

    Returns packageDir is PackagePackageDir

    \ No newline at end of file diff --git a/functions/stateAggregator_accessors_aliasAccessor.getFileLocation.html b/functions/stateAggregator_accessors_aliasAccessor.getFileLocation.html index 336a1f8b3..8dfd2c54e 100644 --- a/functions/stateAggregator_accessors_aliasAccessor.getFileLocation.html +++ b/functions/stateAggregator_accessors_aliasAccessor.getFileLocation.html @@ -1 +1 @@ -getFileLocation | @salesforce/core
    \ No newline at end of file +getFileLocation | @salesforce/core
    \ No newline at end of file diff --git a/functions/testSetup.instantiateContext.html b/functions/testSetup.instantiateContext.html index 4bc2cfb34..46c125f59 100644 --- a/functions/testSetup.instantiateContext.html +++ b/functions/testSetup.instantiateContext.html @@ -4,4 +4,4 @@

    Note: Call stubContext in your beforeEach to have clean stubs of @salesforce/core every test run.

    Parameters

    • Optional sinon: SinonStatic

    Returns TestContext

    Example

    const $$ = instantiateContext();

    beforeEach(() => {
    $$.init()
    });

    afterEach(() => {
    $$.restore();
    });
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/testSetup.restoreContext.html b/functions/testSetup.restoreContext.html index 87dc8410f..8930fed2a 100644 --- a/functions/testSetup.restoreContext.html +++ b/functions/testSetup.restoreContext.html @@ -3,4 +3,4 @@ want to isolate it to a single describe.

    Parameters

    Returns void

    Example

    const $$ = instantiateContext();

    beforeEach(() => {
    $$.init()
    });

    afterEach(() => {
    $$.restore();
    });
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/testSetup.shouldThrow.html b/functions/testSetup.shouldThrow.html index b3bf6e4cd..8fdc97421 100644 --- a/functions/testSetup.shouldThrow.html +++ b/functions/testSetup.shouldThrow.html @@ -2,4 +2,4 @@
     try {
    await call()
    assert.fail("this should never happen");
    } catch (e) {
    ...
    }

    Just do this

    try {
    await shouldThrow(call()); // If this succeeds unexpectedResultError is thrown.
    } catch(e) {
    ...
    }

    Parameters

    • f: Promise<unknown>

      The async function that is expected to throw.

      -
    • Optional message: string

    Returns Promise<never>

    \ No newline at end of file +
  • Optional message: string
  • Returns Promise<never>

    \ No newline at end of file diff --git a/functions/testSetup.shouldThrowSync.html b/functions/testSetup.shouldThrowSync.html index c1dbe6030..6f48ffcbb 100644 --- a/functions/testSetup.shouldThrowSync.html +++ b/functions/testSetup.shouldThrowSync.html @@ -2,4 +2,4 @@
     try {
    call()
    assert.fail("this should never happen");
    } catch (e) {
    ...
    }

    Just do this

    try {
    shouldThrowSync(call); // If this succeeds unexpectedResultError is thrown.
    } catch(e) {
    ...
    }

    Parameters

    • f: (() => unknown)

      The function that is expected to throw.

      -
        • (): unknown
        • Returns unknown

    • Optional message: string

    Returns never

    \ No newline at end of file +
      • (): unknown
      • Returns unknown

  • Optional message: string
  • Returns never

    \ No newline at end of file diff --git a/functions/testSetup.stubContext.html b/functions/testSetup.stubContext.html index f70263235..045e5f60e 100644 --- a/functions/testSetup.stubContext.html +++ b/functions/testSetup.stubContext.html @@ -6,4 +6,4 @@

    Note: Always call restoreContext in your afterEach.

    Parameters

    Returns Record<string, SinonStub<any[], any>>

    Example

    const $$ = instantiateContext();

    beforeEach(() => {
    $$.init()
    });

    afterEach(() => {
    $$.restore();
    });
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/util_fileLocking.lockInit.html b/functions/util_fileLocking.lockInit.html index ac5878626..73fe459d4 100644 --- a/functions/util_fileLocking.lockInit.html +++ b/functions/util_fileLocking.lockInit.html @@ -5,4 +5,4 @@
  • writeAndUnlock: a function that takes the data to write and writes it to the file, then unlocks the file whether write succeeded or not
  • unlock: a function that unlocks the file (in case you don't end up calling writeAndUnlock)
  • -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/util_fileLocking.lockInitSync.html b/functions/util_fileLocking.lockInitSync.html index f42d44b34..221e53caf 100644 --- a/functions/util_fileLocking.lockInitSync.html +++ b/functions/util_fileLocking.lockInitSync.html @@ -1,3 +1,3 @@ lockInitSync | @salesforce/core
    • prefer async lockInit. See its documentation for details.

      -

      Parameters

      • filePath: string

      Returns LockInitSyncResponse

    \ No newline at end of file +

    Parameters

    • filePath: string

    Returns LockInitSyncResponse

    \ No newline at end of file diff --git a/functions/util_fileLocking.pollUntilUnlock.html b/functions/util_fileLocking.pollUntilUnlock.html index bac8d71a7..fa034e240 100644 --- a/functions/util_fileLocking.pollUntilUnlock.html +++ b/functions/util_fileLocking.pollUntilUnlock.html @@ -1,3 +1,3 @@ pollUntilUnlock | @salesforce/core
    • Poll until the file is unlocked.

      Parameters

      • filePath: string

        file path to check

        -

      Returns Promise<void>

    \ No newline at end of file +

    Returns Promise<void>

    \ No newline at end of file diff --git a/functions/util_fileLocking.pollUntilUnlockSync.html b/functions/util_fileLocking.pollUntilUnlockSync.html index e7a7a99f2..7cd06a3bb 100644 --- a/functions/util_fileLocking.pollUntilUnlockSync.html +++ b/functions/util_fileLocking.pollUntilUnlockSync.html @@ -1 +1 @@ -pollUntilUnlockSync | @salesforce/core
    \ No newline at end of file +pollUntilUnlockSync | @salesforce/core
    \ No newline at end of file diff --git a/functions/util_findSuggestion.findSuggestion.html b/functions/util_findSuggestion.findSuggestion.html index 599a6e615..62858214b 100644 --- a/functions/util_findSuggestion.findSuggestion.html +++ b/functions/util_findSuggestion.findSuggestion.html @@ -1,4 +1,4 @@ findSuggestion | @salesforce/core
    • From the haystack, will find the closest value to the needle

      Parameters

      • needle: string

        what the user provided - find results similar to this

      • haystack: string[]

        possible results to search against

        -

      Returns string

    \ No newline at end of file +

    Returns string

    \ No newline at end of file diff --git a/functions/util_findUppercaseKeys.ensureNoUppercaseKeys.html b/functions/util_findUppercaseKeys.ensureNoUppercaseKeys.html index a089b3d5e..3be2aae1b 100644 --- a/functions/util_findUppercaseKeys.ensureNoUppercaseKeys.html +++ b/functions/util_findUppercaseKeys.ensureNoUppercaseKeys.html @@ -1,2 +1,2 @@ ensureNoUppercaseKeys | @salesforce/core
    • will throw on any upperCase unless they are present in the allowList. Recursively searches the object, returning valid keys

      -

      Parameters

      • path: string

      Returns ((allowList?) => ((data) => string[]))

        • (allowList?): ((data) => string[])
        • Parameters

          • allowList: string[] = []

          Returns ((data) => string[])

            • (data): string[]
            • Parameters

              • data: JsonMap

              Returns string[]

    \ No newline at end of file +

    Parameters

    • path: string

    Returns ((allowList?) => ((data) => string[]))

      • (allowList?): ((data) => string[])
      • Parameters

        • allowList: string[] = []

        Returns ((data) => string[])

          • (data): string[]
          • Parameters

            • data: JsonMap

            Returns string[]

    \ No newline at end of file diff --git a/functions/util_getJwtAudienceUrl.getJwtAudienceUrl.html b/functions/util_getJwtAudienceUrl.getJwtAudienceUrl.html index 6fe1e1329..b5a7199eb 100644 --- a/functions/util_getJwtAudienceUrl.getJwtAudienceUrl.html +++ b/functions/util_getJwtAudienceUrl.getJwtAudienceUrl.html @@ -1 +1 @@ -getJwtAudienceUrl | @salesforce/core
    • Parameters

      • options: OAuth2Config & {
            createdOrgInstance?: string;
        }

      Returns Promise<string>

    \ No newline at end of file +getJwtAudienceUrl | @salesforce/core
    • Parameters

      • options: OAuth2Config & {
            createdOrgInstance?: string;
        }

      Returns Promise<string>

    \ No newline at end of file diff --git a/functions/util_mapKeys.default.html b/functions/util_mapKeys.default.html index 41c5f31cb..4e6af4bf3 100644 --- a/functions/util_mapKeys.default.html +++ b/functions/util_mapKeys.default.html @@ -7,4 +7,4 @@

    Returns Record<string, unknown>

    • the object with the converted keys
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/util_sfdc.matchesAccessToken.html b/functions/util_sfdc.matchesAccessToken.html index 168272e54..a52535951 100644 --- a/functions/util_sfdc.matchesAccessToken.html +++ b/functions/util_sfdc.matchesAccessToken.html @@ -1,2 +1,2 @@ matchesAccessToken | @salesforce/core
    • Tests whether a given string is an access token

      -

      Parameters

      • value: string

      Returns boolean

    \ No newline at end of file +

    Parameters

    • value: string

    Returns boolean

    \ No newline at end of file diff --git a/functions/util_sfdc.trimTo15.html b/functions/util_sfdc.trimTo15.html index efc146e57..6378dc7b0 100644 --- a/functions/util_sfdc.trimTo15.html +++ b/functions/util_sfdc.trimTo15.html @@ -1,3 +1,3 @@ trimTo15 | @salesforce/core
    • Converts an 18 character Salesforce ID to 15 characters.

      Parameters

      • id: string

        The id to convert.

        -

      Returns string

    • Parameters

      • Optional id: undefined

      Returns undefined

    • Parameters

      • id: undefined | string

      Returns string | undefined

    \ No newline at end of file +

    Returns string

  • Parameters

    • Optional id: undefined

    Returns undefined

  • Parameters

    • id: undefined | string

    Returns string | undefined

  • \ No newline at end of file diff --git a/functions/util_sfdc.validateApiVersion.html b/functions/util_sfdc.validateApiVersion.html index 976e0c10d..2ae9526a9 100644 --- a/functions/util_sfdc.validateApiVersion.html +++ b/functions/util_sfdc.validateApiVersion.html @@ -1,3 +1,3 @@ validateApiVersion | @salesforce/core
    • Tests whether an API version matches the format i.0.

      Parameters

      • value: string

        The API version as a string.

        -

      Returns boolean

    \ No newline at end of file +

    Returns boolean

    \ No newline at end of file diff --git a/functions/util_sfdc.validateEmail.html b/functions/util_sfdc.validateEmail.html index cbb667ce0..18768cbfc 100644 --- a/functions/util_sfdc.validateEmail.html +++ b/functions/util_sfdc.validateEmail.html @@ -1,3 +1,3 @@ validateEmail | @salesforce/core
    • Tests whether an email matches the format me@my.org

      Parameters

      • value: string

        The email as a string.

        -

      Returns boolean

    \ No newline at end of file +

    Returns boolean

    \ No newline at end of file diff --git a/functions/util_sfdc.validatePathDoesNotContainInvalidChars.html b/functions/util_sfdc.validatePathDoesNotContainInvalidChars.html index dc712088a..f3fd016d6 100644 --- a/functions/util_sfdc.validatePathDoesNotContainInvalidChars.html +++ b/functions/util_sfdc.validatePathDoesNotContainInvalidChars.html @@ -1,3 +1,3 @@ validatePathDoesNotContainInvalidChars | @salesforce/core

    Function validatePathDoesNotContainInvalidChars

    • Tests whether a path is in the correct format; the value doesn't include the characters "[", "]", "?", "<", ">", "?", "|"

      Parameters

      • value: string

        The path as a string.

        -

      Returns boolean

    \ No newline at end of file +

    Returns boolean

    \ No newline at end of file diff --git a/functions/util_sfdc.validateSalesforceId.html b/functions/util_sfdc.validateSalesforceId.html index fb12b5f0c..618127f1f 100644 --- a/functions/util_sfdc.validateSalesforceId.html +++ b/functions/util_sfdc.validateSalesforceId.html @@ -1,3 +1,3 @@ validateSalesforceId | @salesforce/core
    • Tests whether a Salesforce ID is in the correct format, a 15- or 18-character length string with only letters and numbers

      Parameters

      • value: string

        The ID as a string.

        -

      Returns boolean

    \ No newline at end of file +

    Returns boolean

    \ No newline at end of file diff --git a/functions/util_sfdcUrl.getLoginAudienceCombos.html b/functions/util_sfdcUrl.getLoginAudienceCombos.html index 93bb42470..358aed29f 100644 --- a/functions/util_sfdcUrl.getLoginAudienceCombos.html +++ b/functions/util_sfdcUrl.getLoginAudienceCombos.html @@ -1 +1 @@ -getLoginAudienceCombos | @salesforce/core
    • Parameters

      • audienceUrl: string
      • loginUrl: string

      Returns [string, string][]

    \ No newline at end of file +getLoginAudienceCombos | @salesforce/core
    • Parameters

      • audienceUrl: string
      • loginUrl: string

      Returns [string, string][]

    \ No newline at end of file diff --git a/functions/util_time.nowBigInt.html b/functions/util_time.nowBigInt.html index be143950a..ea6045e97 100644 --- a/functions/util_time.nowBigInt.html +++ b/functions/util_time.nowBigInt.html @@ -1 +1 @@ -nowBigInt | @salesforce/core
    \ No newline at end of file +nowBigInt | @salesforce/core
    \ No newline at end of file diff --git a/functions/util_uniqid.uniqid.html b/functions/util_uniqid.uniqid.html index 938f0f7fc..bfc81bc87 100644 --- a/functions/util_uniqid.uniqid.html +++ b/functions/util_uniqid.uniqid.html @@ -6,4 +6,4 @@
  • template: a template string.
  • length: the length of the unique id as presented in hexadecimal.
  • -
    • Optional length?: number
    • Optional template?: string

    Returns string

    \ No newline at end of file +
    • Optional length?: number
    • Optional template?: string

    Returns string

    \ No newline at end of file diff --git a/functions/util_unwrapArray.unwrapArray.html b/functions/util_unwrapArray.unwrapArray.html index 9dd91de16..f8f8fffb3 100644 --- a/functions/util_unwrapArray.unwrapArray.html +++ b/functions/util_unwrapArray.unwrapArray.html @@ -1 +1 @@ -unwrapArray | @salesforce/core
    \ No newline at end of file +unwrapArray | @salesforce/core
    \ No newline at end of file diff --git a/interfaces/org_connection.Tooling.html b/interfaces/org_connection.Tooling.html index dc02ea73b..7c21c8574 100644 --- a/interfaces/org_connection.Tooling.html +++ b/interfaces/org_connection.Tooling.html @@ -1,2 +1,2 @@ -Tooling | @salesforce/core
    interface Tooling<S> {
        _logger: any;
    }

    Type Parameters

    • S extends Schema = Schema

    Hierarchy

    • Tooling<S>
      • Tooling

    Properties

    Properties

    _logger: any
    \ No newline at end of file +Tooling | @salesforce/core
    interface Tooling<S> {
        _logger: any;
    }

    Type Parameters

    • S extends Schema = Schema

    Hierarchy

    • Tooling<S>
      • Tooling

    Properties

    Properties

    _logger: any
    \ No newline at end of file diff --git a/interfaces/org_scratchOrgInfoApi.JsForceError.html b/interfaces/org_scratchOrgInfoApi.JsForceError.html index d7cfb198d..2a2668eec 100644 --- a/interfaces/org_scratchOrgInfoApi.JsForceError.html +++ b/interfaces/org_scratchOrgInfoApi.JsForceError.html @@ -1,3 +1,3 @@ -JsForceError | @salesforce/core
    interface JsForceError {
        errorCode: string;
        fields: string[];
    }

    Hierarchy

    • Error
      • JsForceError

    Properties

    errorCode +JsForceError | @salesforce/core
    interface JsForceError {
        errorCode: string;
        fields: string[];
    }

    Hierarchy

    • Error
      • JsForceError

    Properties

    Properties

    errorCode: string
    fields: string[]
    \ No newline at end of file +

    Properties

    errorCode: string
    fields: string[]
    \ No newline at end of file diff --git a/interfaces/status_streamingClient.StreamingClient.Options.html b/interfaces/status_streamingClient.StreamingClient.Options.html index f0bbf6730..adf0339ec 100644 --- a/interfaces/status_streamingClient.StreamingClient.Options.html +++ b/interfaces/status_streamingClient.StreamingClient.Options.html @@ -1,5 +1,5 @@ Options | @salesforce/core

    Options for the StreamingClient

    -
    interface Options {
        apiVersion: string;
        channel: string;
        handshakeTimeout: Duration;
        org: Org;
        streamProcessor: StreamProcessor;
        streamingImpl: StreamingClientIfc;
        subscribeTimeout: Duration;
    }

    Implemented by

    Properties

    interface Options {
        apiVersion: string;
        channel: string;
        handshakeTimeout: Duration;
        org: Org;
        streamProcessor: StreamProcessor;
        streamingImpl: StreamingClientIfc;
        subscribeTimeout: Duration;
    }

    Implemented by

    Properties

    apiVersion: string

    The salesforce api version

    -
    channel: string

    The streaming channel aka topic

    -
    handshakeTimeout: Duration

    The hard timeout that happens with a handshake.

    -
    org: Org

    The org streaming target.

    -
    streamProcessor: StreamProcessor

    The function for processing streaming messages

    -
    streamingImpl: StreamingClientIfc

    The function for build the inner client impl. Allows for mocking.

    -
    subscribeTimeout: Duration

    The hard timeout that happens with subscribe

    -
    \ No newline at end of file +
    channel: string

    The streaming channel aka topic

    +
    handshakeTimeout: Duration

    The hard timeout that happens with a handshake.

    +
    org: Org

    The org streaming target.

    +
    streamProcessor: StreamProcessor

    The function for processing streaming messages

    +
    streamingImpl: StreamingClientIfc

    The function for build the inner client impl. Allows for mocking.

    +
    subscribeTimeout: Duration

    The hard timeout that happens with subscribe

    +
    \ No newline at end of file diff --git a/modules/config_authInfoConfig.html b/modules/config_authInfoConfig.html index 215a19133..22f3f857d 100644 --- a/modules/config_authInfoConfig.html +++ b/modules/config_authInfoConfig.html @@ -1,2 +1,2 @@ -config/authInfoConfig | @salesforce/core

    Module config/authInfoConfig

    Index

    Classes

    AuthInfoConfig +config/authInfoConfig | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_config.html b/modules/config_config.html index f4aa4788d..c2d475f2b 100644 --- a/modules/config_config.html +++ b/modules/config_config.html @@ -1,4 +1,4 @@ -config/config | @salesforce/core

    Module config/config

    Index

    Enumerations

    SfConfigProperties +config/config | @salesforce/core

    Module config/config

    Index

    Enumerations

    Classes

    Type Aliases

    ConfigProperties diff --git a/modules/config_configAggregator.ConfigAggregator.html b/modules/config_configAggregator.ConfigAggregator.html index ef70a19ee..174e2b3b3 100644 --- a/modules/config_configAggregator.ConfigAggregator.html +++ b/modules/config_configAggregator.ConfigAggregator.html @@ -1,3 +1,3 @@ -ConfigAggregator | @salesforce/core

    Index

    Enumerations

    Location +ConfigAggregator | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_configAggregator.html b/modules/config_configAggregator.html index 1c3a1a5c9..afa1bdcd5 100644 --- a/modules/config_configAggregator.html +++ b/modules/config_configAggregator.html @@ -1,4 +1,4 @@ -config/configAggregator | @salesforce/core

    Module config/configAggregator

    Index

    Namespaces

    ConfigAggregator +config/configAggregator | @salesforce/core

    Module config/configAggregator

    Index

    Namespaces

    Classes

    Type Aliases

    \ No newline at end of file diff --git a/modules/config_configFile.ConfigFile.html b/modules/config_configFile.ConfigFile.html index 7a6fea2bb..d332f17dc 100644 --- a/modules/config_configFile.ConfigFile.html +++ b/modules/config_configFile.ConfigFile.html @@ -1,2 +1,2 @@ -ConfigFile | @salesforce/core

    Index

    Type Aliases

    Options +ConfigFile | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_configFile.html b/modules/config_configFile.html index 35642df98..d48f1a0af 100644 --- a/modules/config_configFile.html +++ b/modules/config_configFile.html @@ -1,3 +1,3 @@ -config/configFile | @salesforce/core

    Module config/configFile

    Index

    Namespaces

    ConfigFile +config/configFile | @salesforce/core

    Module config/configFile

    Index

    Namespaces

    Classes

    \ No newline at end of file diff --git a/modules/config_configStackTypes.html b/modules/config_configStackTypes.html index 73060a3e9..aa26bac71 100644 --- a/modules/config_configStackTypes.html +++ b/modules/config_configStackTypes.html @@ -1,4 +1,4 @@ -config/configStackTypes | @salesforce/core

    Module config/configStackTypes

    Index

    Type Aliases

    ConfigContents +config/configStackTypes | @salesforce/core

    Module config/configStackTypes

    Index

    Type Aliases

    ConfigContents ConfigEntry ConfigValue Key diff --git a/modules/config_configStore.html b/modules/config_configStore.html index 232dadf2b..b23c21028 100644 --- a/modules/config_configStore.html +++ b/modules/config_configStore.html @@ -1,3 +1,3 @@ -config/configStore | @salesforce/core

    Module config/configStore

    Index

    Classes

    BaseConfigStore +config/configStore | @salesforce/core

    Module config/configStore

    Index

    Classes

    Type Aliases

    \ No newline at end of file diff --git a/modules/config_envVars.html b/modules/config_envVars.html index dc25bdb84..6582e86bf 100644 --- a/modules/config_envVars.html +++ b/modules/config_envVars.html @@ -1,4 +1,4 @@ -config/envVars | @salesforce/core

    Module config/envVars

    Index

    Enumerations

    EnvironmentVariable +config/envVars | @salesforce/core

    Module config/envVars

    Index

    Enumerations

    Classes

    Variables

    SUPPORTED_ENV_VARS envVars diff --git a/modules/config_lwwMap.html b/modules/config_lwwMap.html index 4a9b182c3..e3315a90e 100644 --- a/modules/config_lwwMap.html +++ b/modules/config_lwwMap.html @@ -1,4 +1,4 @@ -config/lwwMap | @salesforce/core

    Module config/lwwMap

    Index

    Classes

    LWWMap +config/lwwMap | @salesforce/core

    Module config/lwwMap

    Index

    Classes

    Type Aliases

    Variables

    Functions

    stateFromContents diff --git a/modules/config_lwwRegister.html b/modules/config_lwwRegister.html index 8a0327938..5c97120fb 100644 --- a/modules/config_lwwRegister.html +++ b/modules/config_lwwRegister.html @@ -1,2 +1,2 @@ -config/lwwRegister | @salesforce/core

    Module config/lwwRegister

    Index

    Classes

    LWWRegister +config/lwwRegister | @salesforce/core

    Module config/lwwRegister

    Index

    Classes

    \ No newline at end of file diff --git a/modules/config_orgUsersConfig.OrgUsersConfig.html b/modules/config_orgUsersConfig.OrgUsersConfig.html index 9fa257030..f0463b061 100644 --- a/modules/config_orgUsersConfig.OrgUsersConfig.html +++ b/modules/config_orgUsersConfig.OrgUsersConfig.html @@ -1,2 +1,2 @@ -OrgUsersConfig | @salesforce/core

    Index

    Type Aliases

    Options +OrgUsersConfig | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_orgUsersConfig.html b/modules/config_orgUsersConfig.html index e9ce8cfb6..30551b3db 100644 --- a/modules/config_orgUsersConfig.html +++ b/modules/config_orgUsersConfig.html @@ -1,3 +1,3 @@ -config/orgUsersConfig | @salesforce/core

    Module config/orgUsersConfig

    Index

    Namespaces

    OrgUsersConfig +config/orgUsersConfig | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_sandboxOrgConfig.SandboxOrgConfig.html b/modules/config_sandboxOrgConfig.SandboxOrgConfig.html index 20a73249f..e5150fffd 100644 --- a/modules/config_sandboxOrgConfig.SandboxOrgConfig.html +++ b/modules/config_sandboxOrgConfig.SandboxOrgConfig.html @@ -1,3 +1,3 @@ -SandboxOrgConfig | @salesforce/core

    Index

    Enumerations

    Fields +SandboxOrgConfig | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_sandboxOrgConfig.html b/modules/config_sandboxOrgConfig.html index 7af0f906b..cabcb5acc 100644 --- a/modules/config_sandboxOrgConfig.html +++ b/modules/config_sandboxOrgConfig.html @@ -1,3 +1,3 @@ -config/sandboxOrgConfig | @salesforce/core

    Module config/sandboxOrgConfig

    Index

    Namespaces

    SandboxOrgConfig +config/sandboxOrgConfig | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_sandboxProcessCache.html b/modules/config_sandboxProcessCache.html index a2fe00529..ce3900d2a 100644 --- a/modules/config_sandboxProcessCache.html +++ b/modules/config_sandboxProcessCache.html @@ -1,3 +1,3 @@ -config/sandboxProcessCache | @salesforce/core

    Module config/sandboxProcessCache

    Index

    Classes

    SandboxRequestCache +config/sandboxProcessCache | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_ttlConfig.TTLConfig.html b/modules/config_ttlConfig.TTLConfig.html index 99a3b5d23..5cbbcee12 100644 --- a/modules/config_ttlConfig.TTLConfig.html +++ b/modules/config_ttlConfig.TTLConfig.html @@ -1,4 +1,4 @@ -TTLConfig | @salesforce/core

    Index

    Type Aliases

    Contents +TTLConfig | @salesforce/core
    \ No newline at end of file diff --git a/modules/config_ttlConfig.html b/modules/config_ttlConfig.html index f2ea29f80..24c15903a 100644 --- a/modules/config_ttlConfig.html +++ b/modules/config_ttlConfig.html @@ -1,3 +1,3 @@ -config/ttlConfig | @salesforce/core

    Module config/ttlConfig

    Index

    Namespaces

    TTLConfig +config/ttlConfig | @salesforce/core

    Module config/ttlConfig

    Index

    Namespaces

    Classes

    \ No newline at end of file diff --git a/modules/crypto_crypto.html b/modules/crypto_crypto.html index 9be7c9109..abb155fb7 100644 --- a/modules/crypto_crypto.html +++ b/modules/crypto_crypto.html @@ -1,2 +1,2 @@ -crypto/crypto | @salesforce/core

    Module crypto/crypto

    Index

    Classes

    Crypto +crypto/crypto | @salesforce/core

    Module crypto/crypto

    Index

    Classes

    \ No newline at end of file diff --git a/modules/crypto_keyChain.html b/modules/crypto_keyChain.html index bc549d628..66e6c1371 100644 --- a/modules/crypto_keyChain.html +++ b/modules/crypto_keyChain.html @@ -1 +1 @@ -crypto/keyChain | @salesforce/core
    \ No newline at end of file +crypto/keyChain | @salesforce/core
    \ No newline at end of file diff --git a/modules/crypto_keyChainImpl.html b/modules/crypto_keyChainImpl.html index e7cbe0526..9abb9fca1 100644 --- a/modules/crypto_keyChainImpl.html +++ b/modules/crypto_keyChainImpl.html @@ -1,4 +1,4 @@ -crypto/keyChainImpl | @salesforce/core

    Module crypto/keyChainImpl

    Index

    Classes

    GenericKeychainAccess +crypto/keyChainImpl | @salesforce/core

    Module crypto/keyChainImpl

    Index

    Classes

    Type Aliases

    FsIfc KeyChain PasswordStore diff --git a/modules/crypto_secureBuffer.html b/modules/crypto_secureBuffer.html index 40615d728..699f4669f 100644 --- a/modules/crypto_secureBuffer.html +++ b/modules/crypto_secureBuffer.html @@ -1,3 +1,3 @@ -crypto/secureBuffer | @salesforce/core

    Module crypto/secureBuffer

    Index

    Classes

    SecureBuffer +crypto/secureBuffer | @salesforce/core

    Module crypto/secureBuffer

    Index

    Classes

    Type Aliases

    \ No newline at end of file diff --git a/modules/deviceOauthService.html b/modules/deviceOauthService.html index 48028b9fd..deeefc6a6 100644 --- a/modules/deviceOauthService.html +++ b/modules/deviceOauthService.html @@ -1,4 +1,4 @@ -deviceOauthService | @salesforce/core

    Module deviceOauthService

    Index

    Classes

    DeviceOauthService +deviceOauthService | @salesforce/core
    \ No newline at end of file diff --git a/modules/global.html b/modules/global.html index f90767c81..31e14c96a 100644 --- a/modules/global.html +++ b/modules/global.html @@ -1,3 +1,3 @@ -global | @salesforce/core

    Index

    Enumerations

    Mode +global | @salesforce/core

    Index

    Enumerations

    Classes

    \ No newline at end of file diff --git a/modules/index.html b/modules/index.html index 61e3b472c..c603c27be 100644 --- a/modules/index.html +++ b/modules/index.html @@ -1,4 +1,4 @@ -index | @salesforce/core

    References

    AuthFields +index | @salesforce/core

    References

    AuthFields AuthInfo AuthRemover AuthSideEffects diff --git a/modules/lifecycleEvents.html b/modules/lifecycleEvents.html index 1b7a3a929..6c47088b7 100644 --- a/modules/lifecycleEvents.html +++ b/modules/lifecycleEvents.html @@ -1,4 +1,4 @@ -lifecycleEvents | @salesforce/core

    Module lifecycleEvents

    Index

    Classes

    Lifecycle +lifecycleEvents | @salesforce/core

    Module lifecycleEvents

    Index

    Classes

    Type Aliases

    Functions

    cloneUniqueListeners diff --git a/modules/logger_cleanup.html b/modules/logger_cleanup.html index 2c4837b55..858744476 100644 --- a/modules/logger_cleanup.html +++ b/modules/logger_cleanup.html @@ -1,3 +1,3 @@ -logger/cleanup | @salesforce/core

    Module logger/cleanup

    Index

    Functions

    cleanup +logger/cleanup | @salesforce/core
    \ No newline at end of file diff --git a/modules/logger_filters.html b/modules/logger_filters.html index 237664220..00c213fd2 100644 --- a/modules/logger_filters.html +++ b/modules/logger_filters.html @@ -1,3 +1,3 @@ -logger/filters | @salesforce/core

    Module logger/filters

    Index

    Variables

    HIDDEN +logger/filters | @salesforce/core

    Module logger/filters

    Index

    Variables

    Functions

    \ No newline at end of file diff --git a/modules/logger_logger.html b/modules/logger_logger.html index 46b8eeea9..1c6a9bfdf 100644 --- a/modules/logger_logger.html +++ b/modules/logger_logger.html @@ -1,4 +1,4 @@ -logger/logger | @salesforce/core

    Module logger/logger

    Index

    Enumerations

    LoggerLevel +logger/logger | @salesforce/core

    Module logger/logger

    Index

    Enumerations

    Classes

    Type Aliases

    FieldValue Fields diff --git a/modules/logger_memoryLogger.html b/modules/logger_memoryLogger.html index dd4f5afb9..c6cd98eaa 100644 --- a/modules/logger_memoryLogger.html +++ b/modules/logger_memoryLogger.html @@ -1,2 +1,2 @@ -logger/memoryLogger | @salesforce/core

    Module logger/memoryLogger

    Index

    Classes

    MemoryLogger +logger/memoryLogger | @salesforce/core

    Module logger/memoryLogger

    Index

    Classes

    \ No newline at end of file diff --git a/modules/logger_transformStream.html b/modules/logger_transformStream.html index 29d2ae631..b27192393 100644 --- a/modules/logger_transformStream.html +++ b/modules/logger_transformStream.html @@ -1,2 +1,2 @@ -logger/transformStream | @salesforce/core

    Module logger/transformStream

    Index

    Functions

    default +logger/transformStream | @salesforce/core

    Module logger/transformStream

    Index

    Functions

    \ No newline at end of file diff --git a/modules/messageTransformer.html b/modules/messageTransformer.html index d1f7842cc..40a90137e 100644 --- a/modules/messageTransformer.html +++ b/modules/messageTransformer.html @@ -1,3 +1,3 @@ -messageTransformer | @salesforce/core

    Module messageTransformer

    References

    default +messageTransformer | @salesforce/core

    Module messageTransformer

    References

    Functions

    References

    Renames and re-exports messageTransformer
    \ No newline at end of file diff --git a/modules/messages.html b/modules/messages.html index 7cdb0a139..7dda0f023 100644 --- a/modules/messages.html +++ b/modules/messages.html @@ -1,4 +1,4 @@ -messages | @salesforce/core

    Index

    Classes

    Messages +messages | @salesforce/core

    Index

    Classes

    Type Aliases

    LoaderFunction StoredMessage StoredMessageMap diff --git a/modules/org_authInfo.AuthInfo.html b/modules/org_authInfo.AuthInfo.html index 955f1f756..417be12a3 100644 --- a/modules/org_authInfo.AuthInfo.html +++ b/modules/org_authInfo.AuthInfo.html @@ -1,2 +1,2 @@ -AuthInfo | @salesforce/core

    Index

    Type Aliases

    Options +AuthInfo | @salesforce/core
    \ No newline at end of file diff --git a/modules/org_authInfo.html b/modules/org_authInfo.html index 406beb6ed..d512b6849 100644 --- a/modules/org_authInfo.html +++ b/modules/org_authInfo.html @@ -1,4 +1,4 @@ -org/authInfo | @salesforce/core

    Module org/authInfo

    Index

    Namespaces

    AuthInfo +org/authInfo | @salesforce/core

    Module org/authInfo

    Index

    Namespaces

    Classes

    Type Aliases

    AccessTokenOptions AuthFields diff --git a/modules/org_authRemover.html b/modules/org_authRemover.html index 353938859..4e80f90e0 100644 --- a/modules/org_authRemover.html +++ b/modules/org_authRemover.html @@ -1,2 +1,2 @@ -org/authRemover | @salesforce/core

    Module org/authRemover

    Index

    Classes

    AuthRemover +org/authRemover | @salesforce/core

    Module org/authRemover

    Index

    Classes

    \ No newline at end of file diff --git a/modules/org_connection.Connection.html b/modules/org_connection.Connection.html index 30db534a0..8101fd886 100644 --- a/modules/org_connection.Connection.html +++ b/modules/org_connection.Connection.html @@ -1,2 +1,2 @@ -Connection | @salesforce/core

    Index

    Type Aliases

    Options +Connection | @salesforce/core
    \ No newline at end of file diff --git a/modules/org_connection.html b/modules/org_connection.html index 35b910811..b596d4cfa 100644 --- a/modules/org_connection.html +++ b/modules/org_connection.html @@ -1,4 +1,4 @@ -org/connection | @salesforce/core

    Module org/connection

    Index

    Namespaces

    Connection +org/connection | @salesforce/core

    Module org/connection

    Index

    Namespaces

    Classes

    Interfaces

    Type Aliases

    DeployOptionsWithRest diff --git a/modules/org_org.Org.html b/modules/org_org.Org.html index 24fbda186..2a22b6d37 100644 --- a/modules/org_org.Org.html +++ b/modules/org_org.Org.html @@ -1,4 +1,4 @@ -Org | @salesforce/core

    Index

    Enumerations

    Fields +Org | @salesforce/core

    Index

    Enumerations

    Type Aliases

    \ No newline at end of file diff --git a/modules/org_org.html b/modules/org_org.html index aeaad22e4..54222f3eb 100644 --- a/modules/org_org.html +++ b/modules/org_org.html @@ -1,4 +1,4 @@ -org/org | @salesforce/core

    Index

    Namespaces

    Org +org/org | @salesforce/core

    Index

    Namespaces

    Enumerations

    Classes

    Org diff --git a/modules/org_orgConfigProperties.html b/modules/org_orgConfigProperties.html index 8132b85d2..a40c60334 100644 --- a/modules/org_orgConfigProperties.html +++ b/modules/org_orgConfigProperties.html @@ -1,3 +1,3 @@ -org/orgConfigProperties | @salesforce/core

    Module org/orgConfigProperties

    Index

    Enumerations

    OrgConfigProperties +org/orgConfigProperties | @salesforce/core
    \ No newline at end of file diff --git a/modules/org_permissionSetAssignment.html b/modules/org_permissionSetAssignment.html index d266718d3..1fb2b5021 100644 --- a/modules/org_permissionSetAssignment.html +++ b/modules/org_permissionSetAssignment.html @@ -1,3 +1,3 @@ -org/permissionSetAssignment | @salesforce/core

    Module org/permissionSetAssignment

    Index

    Classes

    PermissionSetAssignment +org/permissionSetAssignment | @salesforce/core
    \ No newline at end of file diff --git a/modules/org_scratchOrgCache.html b/modules/org_scratchOrgCache.html index 5071a858b..1d6d9fa7b 100644 --- a/modules/org_scratchOrgCache.html +++ b/modules/org_scratchOrgCache.html @@ -1,3 +1,3 @@ -org/scratchOrgCache | @salesforce/core

    Module org/scratchOrgCache

    Index

    Classes

    ScratchOrgCache +org/scratchOrgCache | @salesforce/core

    Module org/scratchOrgCache

    Index

    Classes

    Type Aliases

    \ No newline at end of file diff --git a/modules/org_scratchOrgCreate.html b/modules/org_scratchOrgCreate.html index 766dab43a..144fc3bff 100644 --- a/modules/org_scratchOrgCreate.html +++ b/modules/org_scratchOrgCreate.html @@ -1,4 +1,4 @@ -org/scratchOrgCreate | @salesforce/core

    Module org/scratchOrgCreate

    Index

    Type Aliases

    ScratchOrgCreateOptions +org/scratchOrgCreate | @salesforce/core

    Module org/scratchOrgCreate

    Index

    Type Aliases

    Variables

    Functions

    scratchOrgCreate diff --git a/modules/org_scratchOrgErrorCodes.html b/modules/org_scratchOrgErrorCodes.html index aa1e085c9..b5b2017b6 100644 --- a/modules/org_scratchOrgErrorCodes.html +++ b/modules/org_scratchOrgErrorCodes.html @@ -1,3 +1,3 @@ -org/scratchOrgErrorCodes | @salesforce/core

    Module org/scratchOrgErrorCodes

    Index

    Functions

    checkScratchOrgInfoForErrors +org/scratchOrgErrorCodes | @salesforce/core
    \ No newline at end of file diff --git a/modules/org_scratchOrgFeatureDeprecation.html b/modules/org_scratchOrgFeatureDeprecation.html index 6ec3b8731..c0312c63a 100644 --- a/modules/org_scratchOrgFeatureDeprecation.html +++ b/modules/org_scratchOrgFeatureDeprecation.html @@ -1,2 +1,2 @@ -org/scratchOrgFeatureDeprecation | @salesforce/core

    Module org/scratchOrgFeatureDeprecation

    Index

    Classes

    ScratchOrgFeatureDeprecation +org/scratchOrgFeatureDeprecation | @salesforce/core
    \ No newline at end of file diff --git a/modules/org_scratchOrgInfoApi.html b/modules/org_scratchOrgInfoApi.html index afbf3ebaf..37338fc1d 100644 --- a/modules/org_scratchOrgInfoApi.html +++ b/modules/org_scratchOrgInfoApi.html @@ -1,4 +1,4 @@ -org/scratchOrgInfoApi | @salesforce/core

    Module org/scratchOrgInfoApi

    Index

    Interfaces

    JsForceError +org/scratchOrgInfoApi | @salesforce/core

    Module org/scratchOrgInfoApi

    Index

    Interfaces

    Functions

    authorizeScratchOrg deploySettings pollForScratchOrgInfo diff --git a/modules/org_scratchOrgInfoGenerator.html b/modules/org_scratchOrgInfoGenerator.html index 4bbf27df6..ee4209d89 100644 --- a/modules/org_scratchOrgInfoGenerator.html +++ b/modules/org_scratchOrgInfoGenerator.html @@ -1,4 +1,4 @@ -org/scratchOrgInfoGenerator | @salesforce/core

    Module org/scratchOrgInfoGenerator

    Index

    Type Aliases

    ScratchOrgInfoPayload +org/scratchOrgInfoGenerator | @salesforce/core

    Module org/scratchOrgInfoGenerator

    Index

    Type Aliases

    Functions

    generateScratchOrgInfo getAncestorIds getScratchOrgInfoPayload diff --git a/modules/org_scratchOrgLifecycleEvents.html b/modules/org_scratchOrgLifecycleEvents.html index 3422fed0c..80311cd3a 100644 --- a/modules/org_scratchOrgLifecycleEvents.html +++ b/modules/org_scratchOrgLifecycleEvents.html @@ -1,4 +1,4 @@ -org/scratchOrgLifecycleEvents | @salesforce/core

    Module org/scratchOrgLifecycleEvents

    Index

    Type Aliases

    ScratchOrgLifecycleEvent +org/scratchOrgLifecycleEvents | @salesforce/core

    Module org/scratchOrgLifecycleEvents

    Index

    Type Aliases

    Variables

    Functions

    emit diff --git a/modules/org_scratchOrgSettingsGenerator.html b/modules/org_scratchOrgSettingsGenerator.html index ff880997d..627d69080 100644 --- a/modules/org_scratchOrgSettingsGenerator.html +++ b/modules/org_scratchOrgSettingsGenerator.html @@ -1,4 +1,4 @@ -org/scratchOrgSettingsGenerator | @salesforce/core

    Module org/scratchOrgSettingsGenerator

    Index

    Enumerations

    RequestStatus +org/scratchOrgSettingsGenerator | @salesforce/core

    Module org/scratchOrgSettingsGenerator

    Index

    Enumerations

    Classes

    Type Aliases

    PackageFile SettingType diff --git a/modules/org_scratchOrgTypes.html b/modules/org_scratchOrgTypes.html index 2f2635c99..22559618e 100644 --- a/modules/org_scratchOrgTypes.html +++ b/modules/org_scratchOrgTypes.html @@ -1,3 +1,3 @@ -org/scratchOrgTypes | @salesforce/core

    Module org/scratchOrgTypes

    Index

    Type Aliases

    ObjectSetting +org/scratchOrgTypes | @salesforce/core
    \ No newline at end of file diff --git a/modules/org_user.DefaultUserFields.html b/modules/org_user.DefaultUserFields.html index ea71b64ee..644b92eb1 100644 --- a/modules/org_user.DefaultUserFields.html +++ b/modules/org_user.DefaultUserFields.html @@ -1,2 +1,2 @@ -DefaultUserFields | @salesforce/core

    Index

    Type Aliases

    Options +DefaultUserFields | @salesforce/core

    Index

    Type Aliases

    \ No newline at end of file diff --git a/modules/org_user.User.html b/modules/org_user.User.html index d43a09f56..685ec4e57 100644 --- a/modules/org_user.User.html +++ b/modules/org_user.User.html @@ -1,2 +1,2 @@ -User | @salesforce/core

    Index

    Type Aliases

    Options +User | @salesforce/core

    Index

    Type Aliases

    \ No newline at end of file diff --git a/modules/org_user.html b/modules/org_user.html index 46c98a520..9915e2ddc 100644 --- a/modules/org_user.html +++ b/modules/org_user.html @@ -1,4 +1,4 @@ -org/user | @salesforce/core

    Index

    Namespaces

    DefaultUserFields +org/user | @salesforce/core

    Index

    Namespaces

    Classes

    DefaultUserFields User diff --git a/modules/schema_validator.html b/modules/schema_validator.html index 82d45c057..26c9036bd 100644 --- a/modules/schema_validator.html +++ b/modules/schema_validator.html @@ -1,2 +1,2 @@ -schema/validator | @salesforce/core

    Module schema/validator

    Index

    Classes

    SchemaValidator +schema/validator | @salesforce/core
    \ No newline at end of file diff --git a/modules/sfError.html b/modules/sfError.html index be88a139e..fd6c4b4ba 100644 --- a/modules/sfError.html +++ b/modules/sfError.html @@ -1,3 +1,3 @@ -sfError | @salesforce/core

    Index

    Classes

    SfError +sfError | @salesforce/core

    Index

    Classes

    Type Aliases

    \ No newline at end of file diff --git a/modules/sfProject.html b/modules/sfProject.html index 0bb2b453b..36caa7227 100644 --- a/modules/sfProject.html +++ b/modules/sfProject.html @@ -1,4 +1,4 @@ -sfProject | @salesforce/core

    Index

    Classes

    SfProject +sfProject | @salesforce/core

    Index

    Classes

    Type Aliases

    NamedPackageDir NamedPackagingDir diff --git a/modules/stateAggregator_accessors_aliasAccessor.html b/modules/stateAggregator_accessors_aliasAccessor.html index e4025d637..e3ed9a368 100644 --- a/modules/stateAggregator_accessors_aliasAccessor.html +++ b/modules/stateAggregator_accessors_aliasAccessor.html @@ -1,4 +1,4 @@ -stateAggregator/accessors/aliasAccessor | @salesforce/core

    Module stateAggregator/accessors/aliasAccessor

    Index

    Classes

    AliasAccessor +stateAggregator/accessors/aliasAccessor | @salesforce/core

    Module stateAggregator/accessors/aliasAccessor

    Index

    Classes

    Type Aliases

    Variables

    DEFAULT_GROUP FILENAME diff --git a/modules/stateAggregator_accessors_orgAccessor.html b/modules/stateAggregator_accessors_orgAccessor.html index 035d36cae..ad58cb2f1 100644 --- a/modules/stateAggregator_accessors_orgAccessor.html +++ b/modules/stateAggregator_accessors_orgAccessor.html @@ -1,3 +1,3 @@ -stateAggregator/accessors/orgAccessor | @salesforce/core

    Module stateAggregator/accessors/orgAccessor

    Index

    Classes

    BaseOrgAccessor +stateAggregator/accessors/orgAccessor | @salesforce/core
    \ No newline at end of file diff --git a/modules/stateAggregator_accessors_sandboxAccessor.html b/modules/stateAggregator_accessors_sandboxAccessor.html index 71e942eb4..a217b5b59 100644 --- a/modules/stateAggregator_accessors_sandboxAccessor.html +++ b/modules/stateAggregator_accessors_sandboxAccessor.html @@ -1,2 +1,2 @@ -stateAggregator/accessors/sandboxAccessor | @salesforce/core

    Module stateAggregator/accessors/sandboxAccessor

    Index

    Classes

    SandboxAccessor +stateAggregator/accessors/sandboxAccessor | @salesforce/core
    \ No newline at end of file diff --git a/modules/stateAggregator_stateAggregator.html b/modules/stateAggregator_stateAggregator.html index 6d8180cc9..ce0c11fa3 100644 --- a/modules/stateAggregator_stateAggregator.html +++ b/modules/stateAggregator_stateAggregator.html @@ -1,2 +1,2 @@ -stateAggregator/stateAggregator | @salesforce/core

    Module stateAggregator/stateAggregator

    Index

    Classes

    StateAggregator +stateAggregator/stateAggregator | @salesforce/core
    \ No newline at end of file diff --git a/modules/status_myDomainResolver.MyDomainResolver.html b/modules/status_myDomainResolver.MyDomainResolver.html index b354b2844..283d9e9c1 100644 --- a/modules/status_myDomainResolver.MyDomainResolver.html +++ b/modules/status_myDomainResolver.MyDomainResolver.html @@ -1,2 +1,2 @@ -MyDomainResolver | @salesforce/core

    Index

    Type Aliases

    Options +MyDomainResolver | @salesforce/core
    \ No newline at end of file diff --git a/modules/status_myDomainResolver.html b/modules/status_myDomainResolver.html index 2f3aef8dd..fbe66041e 100644 --- a/modules/status_myDomainResolver.html +++ b/modules/status_myDomainResolver.html @@ -1,3 +1,3 @@ -status/myDomainResolver | @salesforce/core

    Module status/myDomainResolver

    Index

    Namespaces

    MyDomainResolver +status/myDomainResolver | @salesforce/core
    \ No newline at end of file diff --git a/modules/status_pollingClient.PollingClient.html b/modules/status_pollingClient.PollingClient.html index 6db591550..8445e9c95 100644 --- a/modules/status_pollingClient.PollingClient.html +++ b/modules/status_pollingClient.PollingClient.html @@ -1,3 +1,3 @@ -PollingClient | @salesforce/core

    Index

    Classes

    DefaultPollingOptions +PollingClient | @salesforce/core
    \ No newline at end of file diff --git a/modules/status_pollingClient.html b/modules/status_pollingClient.html index 72cca1ca6..438b5ec8e 100644 --- a/modules/status_pollingClient.html +++ b/modules/status_pollingClient.html @@ -1,3 +1,3 @@ -status/pollingClient | @salesforce/core

    Module status/pollingClient

    Index

    Namespaces

    PollingClient +status/pollingClient | @salesforce/core

    Module status/pollingClient

    Index

    Namespaces

    Classes

    \ No newline at end of file diff --git a/modules/status_streamingClient.StreamingClient.html b/modules/status_streamingClient.StreamingClient.html index 659b3048f..4deb54e26 100644 --- a/modules/status_streamingClient.StreamingClient.html +++ b/modules/status_streamingClient.StreamingClient.html @@ -1,4 +1,4 @@ -StreamingClient | @salesforce/core

    Index

    Enumerations

    ConnectionState +StreamingClient | @salesforce/core

    Index

    Enumerations

    Classes

    Interfaces

    Options diff --git a/modules/status_streamingClient.html b/modules/status_streamingClient.html index 6832f2b3f..00c2c144e 100644 --- a/modules/status_streamingClient.html +++ b/modules/status_streamingClient.html @@ -1,4 +1,4 @@ -status/streamingClient | @salesforce/core

    Module status/streamingClient

    References

    CometClient +status/streamingClient | @salesforce/core

    Module status/streamingClient

    References

    CometClient CometSubscription Message StatusResult diff --git a/modules/status_types.html b/modules/status_types.html index 07bc5b727..af445ca5c 100644 --- a/modules/status_types.html +++ b/modules/status_types.html @@ -1,4 +1,4 @@ -status/types | @salesforce/core

    Module status/types

    Index

    Classes

    CometClient +status/types | @salesforce/core

    Module status/types

    Index

    Classes

    Type Aliases

    Callback CometSubscription Message diff --git a/modules/testSetup.html b/modules/testSetup.html index 106299600..37addeb16 100644 --- a/modules/testSetup.html +++ b/modules/testSetup.html @@ -1,4 +1,4 @@ -testSetup | @salesforce/core

    References

    SecureBuffer +testSetup | @salesforce/core

    References

    Enumerations

    Classes

    MockTestOrgData diff --git a/modules/util_cache.html b/modules/util_cache.html index f6871eb6e..e1d0ed4c8 100644 --- a/modules/util_cache.html +++ b/modules/util_cache.html @@ -1,2 +1,2 @@ -util/cache | @salesforce/core

    Index

    Classes

    Cache +util/cache | @salesforce/core

    Index

    Classes

    \ No newline at end of file diff --git a/modules/util_directoryWriter.html b/modules/util_directoryWriter.html index 761b2a234..4adac1707 100644 --- a/modules/util_directoryWriter.html +++ b/modules/util_directoryWriter.html @@ -1,2 +1,2 @@ -util/directoryWriter | @salesforce/core

    Module util/directoryWriter

    Index

    Classes

    DirectoryWriter +util/directoryWriter | @salesforce/core
    \ No newline at end of file diff --git a/modules/util_fileLocking.html b/modules/util_fileLocking.html index cca27e962..2e947d50c 100644 --- a/modules/util_fileLocking.html +++ b/modules/util_fileLocking.html @@ -1,4 +1,4 @@ -util/fileLocking | @salesforce/core

    Module util/fileLocking

    Index

    Functions

    lockInit +util/fileLocking | @salesforce/core

    Module util/fileLocking

    Index

    Functions

    lockInit lockInitSync pollUntilUnlock pollUntilUnlockSync diff --git a/modules/util_findSuggestion.html b/modules/util_findSuggestion.html index f40bbb1a0..faaf96de7 100644 --- a/modules/util_findSuggestion.html +++ b/modules/util_findSuggestion.html @@ -1,2 +1,2 @@ -util/findSuggestion | @salesforce/core

    Module util/findSuggestion

    Index

    Functions

    findSuggestion +util/findSuggestion | @salesforce/core

    Module util/findSuggestion

    Index

    Functions

    \ No newline at end of file diff --git a/modules/util_findUppercaseKeys.html b/modules/util_findUppercaseKeys.html index 3196e5b9d..40425759d 100644 --- a/modules/util_findUppercaseKeys.html +++ b/modules/util_findUppercaseKeys.html @@ -1,2 +1,2 @@ -util/findUppercaseKeys | @salesforce/core

    Module util/findUppercaseKeys

    Index

    Functions

    ensureNoUppercaseKeys +util/findUppercaseKeys | @salesforce/core
    \ No newline at end of file diff --git a/modules/util_getJwtAudienceUrl.html b/modules/util_getJwtAudienceUrl.html index 5ee65ad73..404d85b05 100644 --- a/modules/util_getJwtAudienceUrl.html +++ b/modules/util_getJwtAudienceUrl.html @@ -1,2 +1,2 @@ -util/getJwtAudienceUrl | @salesforce/core

    Module util/getJwtAudienceUrl

    Index

    Functions

    getJwtAudienceUrl +util/getJwtAudienceUrl | @salesforce/core
    \ No newline at end of file diff --git a/modules/util_internal.html b/modules/util_internal.html index dc81f06c2..10ed9d2a1 100644 --- a/modules/util_internal.html +++ b/modules/util_internal.html @@ -1,2 +1,2 @@ -util/internal | @salesforce/core

    Module util/internal

    Index

    Variables

    traverse +util/internal | @salesforce/core

    Module util/internal

    Index

    Variables

    \ No newline at end of file diff --git a/modules/util_lockRetryOptions.html b/modules/util_lockRetryOptions.html index 69ead5f29..f8938874e 100644 --- a/modules/util_lockRetryOptions.html +++ b/modules/util_lockRetryOptions.html @@ -1,3 +1,3 @@ -util/lockRetryOptions | @salesforce/core

    Module util/lockRetryOptions

    Index

    Variables

    lockOptions +util/lockRetryOptions | @salesforce/core
    \ No newline at end of file diff --git a/modules/util_mapKeys.html b/modules/util_mapKeys.html index a30016f1b..dc46cf5fb 100644 --- a/modules/util_mapKeys.html +++ b/modules/util_mapKeys.html @@ -1,2 +1,2 @@ -util/mapKeys | @salesforce/core

    Module util/mapKeys

    Index

    Functions

    default +util/mapKeys | @salesforce/core

    Module util/mapKeys

    Index

    Functions

    \ No newline at end of file diff --git a/modules/util_sfdc.html b/modules/util_sfdc.html index 92131a48b..6870561cd 100644 --- a/modules/util_sfdc.html +++ b/modules/util_sfdc.html @@ -1,4 +1,4 @@ -util/sfdc | @salesforce/core

    Index

    Variables

    accessTokenRegex +util/sfdc | @salesforce/core

    Index

    Variables

    Functions

    matchesAccessToken trimTo15 diff --git a/modules/util_sfdcUrl.html b/modules/util_sfdcUrl.html index 60eb3d0dd..88788ba35 100644 --- a/modules/util_sfdcUrl.html +++ b/modules/util_sfdcUrl.html @@ -1,3 +1,3 @@ -util/sfdcUrl | @salesforce/core

    Module util/sfdcUrl

    Index

    Classes

    SfdcUrl +util/sfdcUrl | @salesforce/core

    Module util/sfdcUrl

    Index

    Classes

    Functions

    \ No newline at end of file diff --git a/modules/util_structuredWriter.html b/modules/util_structuredWriter.html index d0025e270..9d3d88bb0 100644 --- a/modules/util_structuredWriter.html +++ b/modules/util_structuredWriter.html @@ -1,2 +1,2 @@ -util/structuredWriter | @salesforce/core

    Module util/structuredWriter

    Index

    Type Aliases

    StructuredWriter +util/structuredWriter | @salesforce/core

    Module util/structuredWriter

    Index

    Type Aliases

    \ No newline at end of file diff --git a/modules/util_time.html b/modules/util_time.html index 275fda0ee..89635fcfc 100644 --- a/modules/util_time.html +++ b/modules/util_time.html @@ -1,2 +1,2 @@ -util/time | @salesforce/core

    Index

    Functions

    nowBigInt +util/time | @salesforce/core

    Index

    Functions

    \ No newline at end of file diff --git a/modules/util_uniqid.html b/modules/util_uniqid.html index 3d35f724a..e5f3e8d47 100644 --- a/modules/util_uniqid.html +++ b/modules/util_uniqid.html @@ -1,2 +1,2 @@ -util/uniqid | @salesforce/core

    Module util/uniqid

    Index

    Functions

    uniqid +util/uniqid | @salesforce/core

    Module util/uniqid

    Index

    Functions

    \ No newline at end of file diff --git a/modules/util_unwrapArray.html b/modules/util_unwrapArray.html index d99724be3..b367d0157 100644 --- a/modules/util_unwrapArray.html +++ b/modules/util_unwrapArray.html @@ -1,2 +1,2 @@ -util/unwrapArray | @salesforce/core

    Module util/unwrapArray

    Index

    Functions

    unwrapArray +util/unwrapArray | @salesforce/core

    Module util/unwrapArray

    Index

    Functions

    \ No newline at end of file diff --git a/modules/util_zipWriter.html b/modules/util_zipWriter.html index af80c6c57..36ae9482f 100644 --- a/modules/util_zipWriter.html +++ b/modules/util_zipWriter.html @@ -1,2 +1,2 @@ -util/zipWriter | @salesforce/core

    Module util/zipWriter

    Index

    Classes

    ZipWriter +util/zipWriter | @salesforce/core

    Module util/zipWriter

    Index

    Classes

    \ No newline at end of file diff --git a/modules/webOAuthServer.WebOAuthServer.html b/modules/webOAuthServer.WebOAuthServer.html index 2ff977526..316dd3f57 100644 --- a/modules/webOAuthServer.WebOAuthServer.html +++ b/modules/webOAuthServer.WebOAuthServer.html @@ -1,3 +1,3 @@ -WebOAuthServer | @salesforce/core

    Index

    Type Aliases

    Options +WebOAuthServer | @salesforce/core
    \ No newline at end of file diff --git a/modules/webOAuthServer.html b/modules/webOAuthServer.html index 8bd3e1b29..5ff1d0608 100644 --- a/modules/webOAuthServer.html +++ b/modules/webOAuthServer.html @@ -1,4 +1,4 @@ -webOAuthServer | @salesforce/core

    Module webOAuthServer

    Index

    Namespaces

    WebOAuthServer +webOAuthServer | @salesforce/core
    \ No newline at end of file diff --git a/types/config_config.ConfigProperties.html b/types/config_config.ConfigProperties.html index b8313e110..bdd0fb517 100644 --- a/types/config_config.ConfigProperties.html +++ b/types/config_config.ConfigProperties.html @@ -1 +1 @@ -ConfigProperties | @salesforce/core
    ConfigProperties: ConfigContents
    \ No newline at end of file +ConfigProperties | @salesforce/core
    ConfigProperties: ConfigContents
    \ No newline at end of file diff --git a/types/config_config.ConfigPropertyMeta.html b/types/config_config.ConfigPropertyMeta.html index bab748207..b107eed10 100644 --- a/types/config_config.ConfigPropertyMeta.html +++ b/types/config_config.ConfigPropertyMeta.html @@ -7,4 +7,4 @@
  • key: string

    The config property name.

  • Optional newKey?: string

    Reference to config property name that will eventually replace this one. Is only used if deprecated is set to true.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/config_config.ConfigPropertyMetaInput.html b/types/config_config.ConfigPropertyMetaInput.html index a4a100ae6..7e0a2d89c 100644 --- a/types/config_config.ConfigPropertyMetaInput.html +++ b/types/config_config.ConfigPropertyMetaInput.html @@ -2,4 +2,4 @@

    Type declaration

    • failedMessage: string | ((value) => string)

      The message to return in the error if the validation fails.

    • validator: ((value) => boolean)

      Tests if the input value is valid and returns true if the input data is valid.

        • (value): boolean
        • Parameters

          Returns boolean

    \ No newline at end of file +

    Returns boolean

    \ No newline at end of file diff --git a/types/config_configAggregator.ConfigAggregator.Options.html b/types/config_configAggregator.ConfigAggregator.Options.html index 5861edae1..de958d409 100644 --- a/types/config_configAggregator.ConfigAggregator.Options.html +++ b/types/config_configAggregator.ConfigAggregator.Options.html @@ -1 +1 @@ -Options | @salesforce/core
    Options: {
        customConfigMeta?: ConfigPropertyMeta[];
    }

    Type declaration

    \ No newline at end of file +Options | @salesforce/core
    Options: {
        customConfigMeta?: ConfigPropertyMeta[];
    }

    Type declaration

    \ No newline at end of file diff --git a/types/config_configAggregator.ConfigInfo.html b/types/config_configAggregator.ConfigInfo.html index 774ac933a..8ce736f1a 100644 --- a/types/config_configAggregator.ConfigInfo.html +++ b/types/config_configAggregator.ConfigInfo.html @@ -7,4 +7,4 @@
  • Optional location?: Location

    The location of the config property.

  • Optional path?: string

    The path of the config value.

  • Optional value?: AnyJson

    The config value.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/config_configFile.ConfigFile.Options.html b/types/config_configFile.ConfigFile.Options.html index 098db3e0e..cf1a6a015 100644 --- a/types/config_configFile.ConfigFile.Options.html +++ b/types/config_configFile.ConfigFile.Options.html @@ -6,4 +6,4 @@
  • Optional rootFolder?: string

    The root folder where the config file is stored.

  • Optional stateFolder?: string

    The state folder where the config file is stored.

  • Optional throwOnNotFound?: boolean

    Indicates if init should throw if the corresponding config file is not found.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/config_configStackTypes.ConfigContents.html b/types/config_configStackTypes.ConfigContents.html index 73e08c0de..0c5ff3634 100644 --- a/types/config_configStackTypes.ConfigContents.html +++ b/types/config_configStackTypes.ConfigContents.html @@ -1,2 +1,2 @@ ConfigContents | @salesforce/core
    ConfigContents<T>: Dictionary<T>

    The type of content a config stores.

    -

    Type Parameters

    \ No newline at end of file +

    Type Parameters

    \ No newline at end of file diff --git a/types/config_configStackTypes.ConfigEntry.html b/types/config_configStackTypes.ConfigEntry.html index d2b311cf8..58d55c28f 100644 --- a/types/config_configStackTypes.ConfigEntry.html +++ b/types/config_configStackTypes.ConfigEntry.html @@ -1,2 +1,2 @@ ConfigEntry | @salesforce/core
    ConfigEntry: [string, ConfigValue]

    The type of entries in a config store defined by the key and value type of ConfigContents.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/config_configStackTypes.ConfigValue.html b/types/config_configStackTypes.ConfigValue.html index 0a7eff181..86af58ef0 100644 --- a/types/config_configStackTypes.ConfigValue.html +++ b/types/config_configStackTypes.ConfigValue.html @@ -1,2 +1,2 @@ ConfigValue | @salesforce/core
    ConfigValue: AnyJson

    The allowed types stored in a config store.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/config_configStackTypes.Key.html b/types/config_configStackTypes.Key.html index 3b6549166..08f0fa220 100644 --- a/types/config_configStackTypes.Key.html +++ b/types/config_configStackTypes.Key.html @@ -1 +1 @@ -Key | @salesforce/core
    Key<P>: Extract<keyof P, string>

    Type Parameters

    \ No newline at end of file +Key | @salesforce/core
    Key<P>: Extract<keyof P, string>

    Type Parameters

    \ No newline at end of file diff --git a/types/config_configStore.ConfigStore.html b/types/config_configStore.ConfigStore.html index 7e6f21b21..aaa399a08 100644 --- a/types/config_configStore.ConfigStore.html +++ b/types/config_configStore.ConfigStore.html @@ -1,2 +1,2 @@ ConfigStore | @salesforce/core
    ConfigStore<P>: {
        clear(): void;
        entries(): ConfigEntry[];
        forEach(actionFn): void;
        get<K>(key, decrypt): P[K];
        get<T>(key, decrypt): T;
        getContents(): P;
        getKeysByValue(value): Key<P>[];
        has(key): boolean;
        keys(): Key<P>[];
        set<K>(key, value): void;
        set<T>(key, value): void;
        unset(key): boolean;
        unsetAll(keys): boolean;
        update<K>(key, value): void;
        update<T>(key, value): void;
        values(): AnyJson[];
    }

    An interface for a config object with a persistent store.

    -

    Type Parameters

    Type declaration

    \ No newline at end of file +

    Type Parameters

    Type declaration

    \ No newline at end of file diff --git a/types/config_lwwMap.LWWState.html b/types/config_lwwMap.LWWState.html index f61bee0a9..7c9b745ff 100644 --- a/types/config_lwwMap.LWWState.html +++ b/types/config_lwwMap.LWWState.html @@ -1 +1 @@ -LWWState | @salesforce/core
    LWWState<P>: {
        [Property in keyof P]: LWWRegister<P[Property] | typeof SYMBOL_FOR_DELETED>["state"]
    }

    Type Parameters

    • P
    \ No newline at end of file +LWWState | @salesforce/core
    LWWState<P>: {
        [Property in keyof P]: LWWRegister<P[Property] | typeof SYMBOL_FOR_DELETED>["state"]
    }

    Type Parameters

    • P
    \ No newline at end of file diff --git a/types/config_orgUsersConfig.OrgUsersConfig.Options.html b/types/config_orgUsersConfig.OrgUsersConfig.Options.html index 718229d94..353433bae 100644 --- a/types/config_orgUsersConfig.OrgUsersConfig.Options.html +++ b/types/config_orgUsersConfig.OrgUsersConfig.Options.html @@ -1,3 +1,3 @@ Options | @salesforce/core
    Options: {
        orgId: string;
    } & ConfigFile.Options

    The config file options.

    Type declaration

    • orgId: string

      The org id associated with this user.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/config_sandboxOrgConfig.SandboxOrgConfig.Options.html b/types/config_sandboxOrgConfig.SandboxOrgConfig.Options.html index 7457c5c2d..113e132d6 100644 --- a/types/config_sandboxOrgConfig.SandboxOrgConfig.Options.html +++ b/types/config_sandboxOrgConfig.SandboxOrgConfig.Options.html @@ -1,3 +1,3 @@ Options | @salesforce/core
    Options: {
        orgId: string;
    } & ConfigFile.Options

    The config file options.

    Type declaration

    • orgId: string

      The org id associated with this sandbox.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/config_sandboxProcessCache.SandboxRequestCacheEntry.html b/types/config_sandboxProcessCache.SandboxRequestCacheEntry.html index a833a63a3..ce6073ef7 100644 --- a/types/config_sandboxProcessCache.SandboxRequestCacheEntry.html +++ b/types/config_sandboxProcessCache.SandboxRequestCacheEntry.html @@ -1 +1 @@ -SandboxRequestCacheEntry | @salesforce/core
    SandboxRequestCacheEntry: {
        action: "Create" | "Refresh";
        alias?: string;
        prodOrgUsername: string;
        sandboxProcessObject: Partial<SandboxProcessObject>;
        sandboxRequest: Partial<SandboxRequest>;
        setDefault?: boolean;
        tracksSource?: boolean;
    }

    Type declaration

    • action: "Create" | "Refresh"
    • Optional alias?: string
    • prodOrgUsername: string
    • sandboxProcessObject: Partial<SandboxProcessObject>
    • sandboxRequest: Partial<SandboxRequest>
    • Optional setDefault?: boolean
    • Optional tracksSource?: boolean
    \ No newline at end of file +SandboxRequestCacheEntry | @salesforce/core
    SandboxRequestCacheEntry: {
        action: "Create" | "Refresh";
        alias?: string;
        prodOrgUsername: string;
        sandboxProcessObject: Partial<SandboxProcessObject>;
        sandboxRequest: Partial<SandboxRequest>;
        setDefault?: boolean;
        tracksSource?: boolean;
    }

    Type declaration

    • action: "Create" | "Refresh"
    • Optional alias?: string
    • prodOrgUsername: string
    • sandboxProcessObject: Partial<SandboxProcessObject>
    • sandboxRequest: Partial<SandboxRequest>
    • Optional setDefault?: boolean
    • Optional tracksSource?: boolean
    \ No newline at end of file diff --git a/types/config_ttlConfig.TTLConfig.Contents.html b/types/config_ttlConfig.TTLConfig.Contents.html index d3515b4cc..5a1c3d667 100644 --- a/types/config_ttlConfig.TTLConfig.Contents.html +++ b/types/config_ttlConfig.TTLConfig.Contents.html @@ -1 +1 @@ -Contents | @salesforce/core
    Contents<T>: Record<string, Entry<T>>

    Type Parameters

    • T extends JsonMap
    \ No newline at end of file +Contents | @salesforce/core
    Contents<T>: Record<string, Entry<T>>

    Type Parameters

    • T extends JsonMap
    \ No newline at end of file diff --git a/types/config_ttlConfig.TTLConfig.Entry.html b/types/config_ttlConfig.TTLConfig.Entry.html index f95b2f3b6..f2f73823d 100644 --- a/types/config_ttlConfig.TTLConfig.Entry.html +++ b/types/config_ttlConfig.TTLConfig.Entry.html @@ -1 +1 @@ -Entry | @salesforce/core
    Entry<T>: T & {
        timestamp: string;
    }

    Type Parameters

    • T extends JsonMap

    Type declaration

    • timestamp: string
    \ No newline at end of file +Entry | @salesforce/core
    Entry<T>: T & {
        timestamp: string;
    }

    Type Parameters

    • T extends JsonMap

    Type declaration

    • timestamp: string
    \ No newline at end of file diff --git a/types/config_ttlConfig.TTLConfig.Options.html b/types/config_ttlConfig.TTLConfig.Options.html index 182d97d19..b2e87c238 100644 --- a/types/config_ttlConfig.TTLConfig.Options.html +++ b/types/config_ttlConfig.TTLConfig.Options.html @@ -1 +1 @@ -Options | @salesforce/core
    Options: ConfigFile.Options & {
        ttl: Duration;
    }

    Type declaration

    • ttl: Duration
    \ No newline at end of file +Options | @salesforce/core
    Options: ConfigFile.Options & {
        ttl: Duration;
    }

    Type declaration

    • ttl: Duration
    \ No newline at end of file diff --git a/types/crypto_keyChainImpl.FsIfc.html b/types/crypto_keyChainImpl.FsIfc.html index ff271ceec..a12e69e60 100644 --- a/types/crypto_keyChainImpl.FsIfc.html +++ b/types/crypto_keyChainImpl.FsIfc.html @@ -1 +1 @@ -FsIfc | @salesforce/core
    FsIfc: Pick<typeof nodeFs, "statSync">
    \ No newline at end of file +FsIfc | @salesforce/core
    FsIfc: Pick<typeof nodeFs, "statSync">
    \ No newline at end of file diff --git a/types/crypto_keyChainImpl.KeyChain.html b/types/crypto_keyChainImpl.KeyChain.html index e44bdcd65..49d6f7ff5 100644 --- a/types/crypto_keyChainImpl.KeyChain.html +++ b/types/crypto_keyChainImpl.KeyChain.html @@ -1 +1 @@ -KeyChain | @salesforce/core
    KeyChain: GenericUnixKeychainAccess | GenericWindowsKeychainAccess | KeychainAccess
    \ No newline at end of file +KeyChain | @salesforce/core
    KeyChain: GenericUnixKeychainAccess | GenericWindowsKeychainAccess | KeychainAccess
    \ No newline at end of file diff --git a/types/crypto_keyChainImpl.PasswordStore.html b/types/crypto_keyChainImpl.PasswordStore.html index 66cc7705a..1ce2779d4 100644 --- a/types/crypto_keyChainImpl.PasswordStore.html +++ b/types/crypto_keyChainImpl.PasswordStore.html @@ -3,7 +3,7 @@

    Parameters

    • opts: ProgramOpts

      cli level password options.

    • fn: ((error, password?) => void)

      function callback for password.

        • (error, password?): void
        • Parameters

          • error: Nullable<Error>
          • Optional password: string

          Returns void

    • Optional retryCount: number

      number of reties to get the password.

      -

    Returns Promise<void>

  • setPassword:function
    • Sets a password.

      +
  • Returns Promise<void>

  • setPassword:function
    • Sets a password.

      Parameters

      • opts: ProgramOpts

        cli level password options.

      • fn: ((error, contents?) => void)

        function callback for password.

        -
          • (error, contents?): void
          • Parameters

            • error: Nullable<Error>
            • Optional contents: SecretContents

            Returns void

      Returns Promise<void>

  • \ No newline at end of file +
      • (error, contents?): void
      • Parameters

        • error: Nullable<Error>
        • Optional contents: SecretContents

        Returns void

    Returns Promise<void>

    \ No newline at end of file diff --git a/types/crypto_secureBuffer.DecipherCallback.html b/types/crypto_secureBuffer.DecipherCallback.html index c7dd173d1..17e599fa4 100644 --- a/types/crypto_secureBuffer.DecipherCallback.html +++ b/types/crypto_secureBuffer.DecipherCallback.html @@ -1,3 +1,3 @@ DecipherCallback | @salesforce/core
    DecipherCallback<T>: ((buffer) => T)

    Returns the intended type of the object to return. This is implementation specific.

    Type Parameters

    • T

    Type declaration

      • (buffer): T
      • Parameters

        • buffer: Buffer

          A buffer containing the decrypted secret.

          -

        Returns T

    \ No newline at end of file +

    Returns T

    \ No newline at end of file diff --git a/types/deviceOauthService.DeviceCodePollingResponse.html b/types/deviceOauthService.DeviceCodePollingResponse.html index c18c800cb..3037d8b65 100644 --- a/types/deviceOauthService.DeviceCodePollingResponse.html +++ b/types/deviceOauthService.DeviceCodePollingResponse.html @@ -1 +1 @@ -DeviceCodePollingResponse | @salesforce/core
    DeviceCodePollingResponse: {
        access_token: string;
        id: string;
        instance_url: string;
        issued_at: string;
        refresh_token: string;
        scope: string;
        signature: string;
        token_type: string;
    } & JsonMap

    Type declaration

    • access_token: string
    • id: string
    • instance_url: string
    • issued_at: string
    • refresh_token: string
    • scope: string
    • signature: string
    • token_type: string
    \ No newline at end of file +DeviceCodePollingResponse | @salesforce/core
    DeviceCodePollingResponse: {
        access_token: string;
        id: string;
        instance_url: string;
        issued_at: string;
        refresh_token: string;
        scope: string;
        signature: string;
        token_type: string;
    } & JsonMap

    Type declaration

    • access_token: string
    • id: string
    • instance_url: string
    • issued_at: string
    • refresh_token: string
    • scope: string
    • signature: string
    • token_type: string
    \ No newline at end of file diff --git a/types/deviceOauthService.DeviceCodeResponse.html b/types/deviceOauthService.DeviceCodeResponse.html index 2e8890717..f54862ed0 100644 --- a/types/deviceOauthService.DeviceCodeResponse.html +++ b/types/deviceOauthService.DeviceCodeResponse.html @@ -1 +1 @@ -DeviceCodeResponse | @salesforce/core
    DeviceCodeResponse: {
        device_code: string;
        interval: number;
        user_code: string;
        verification_uri: string;
    } & JsonMap

    Type declaration

    • device_code: string
    • interval: number
    • user_code: string
    • verification_uri: string
    \ No newline at end of file +DeviceCodeResponse | @salesforce/core
    DeviceCodeResponse: {
        device_code: string;
        interval: number;
        user_code: string;
        verification_uri: string;
    } & JsonMap

    Type declaration

    • device_code: string
    • interval: number
    • user_code: string
    • verification_uri: string
    \ No newline at end of file diff --git a/types/lifecycleEvents.UniqueListenerMap.html b/types/lifecycleEvents.UniqueListenerMap.html index 6db62419b..7397c8795 100644 --- a/types/lifecycleEvents.UniqueListenerMap.html +++ b/types/lifecycleEvents.UniqueListenerMap.html @@ -1 +1 @@ -UniqueListenerMap | @salesforce/core
    UniqueListenerMap: Map<string, ListenerMap>
    \ No newline at end of file +UniqueListenerMap | @salesforce/core
    UniqueListenerMap: Map<string, ListenerMap>
    \ No newline at end of file diff --git a/types/lifecycleEvents.callback.html b/types/lifecycleEvents.callback.html index d3209455d..e2300474a 100644 --- a/types/lifecycleEvents.callback.html +++ b/types/lifecycleEvents.callback.html @@ -1 +1 @@ -callback | @salesforce/core
    callback: ((data) => Promise<void>)

    Type declaration

      • (data): Promise<void>
      • Parameters

        • data: any

        Returns Promise<void>

    \ No newline at end of file +callback | @salesforce/core
    callback: ((data) => Promise<void>)

    Type declaration

      • (data): Promise<void>
      • Parameters

        • data: any

        Returns Promise<void>

    \ No newline at end of file diff --git a/types/logger_logger.FieldValue.html b/types/logger_logger.FieldValue.html index 419369109..1878abd12 100644 --- a/types/logger_logger.FieldValue.html +++ b/types/logger_logger.FieldValue.html @@ -1,2 +1,2 @@ FieldValue | @salesforce/core
    FieldValue: string | number | boolean | Fields

    All possible field value types.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/logger_logger.Fields.html b/types/logger_logger.Fields.html index a0e2b48d2..9b822a2bb 100644 --- a/types/logger_logger.Fields.html +++ b/types/logger_logger.Fields.html @@ -1,2 +1,2 @@ Fields | @salesforce/core
    Fields: Record<string, unknown>

    An object

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/logger_logger.LogLine.html b/types/logger_logger.LogLine.html index c57e0e4b6..1ff64e3e7 100644 --- a/types/logger_logger.LogLine.html +++ b/types/logger_logger.LogLine.html @@ -1,2 +1,2 @@ LogLine | @salesforce/core
    LogLine: {
        hostname: string;
        level: number;
        log: string;
        msg: string;
        name: string;
        pid: string;
        time: string;
        v: number;
    }

    Log line interface

    -

    Type declaration

    • hostname: string
    • level: number
    • log: string
    • msg: string
    • name: string
    • pid: string
    • time: string
    • v: number
    \ No newline at end of file +

    Type declaration

    • hostname: string
    • level: number
    • log: string
    • msg: string
    • name: string
    • pid: string
    • time: string
    • v: number
    \ No newline at end of file diff --git a/types/logger_logger.LoggerLevelValue.html b/types/logger_logger.LoggerLevelValue.html index fe568273c..5e58e97d6 100644 --- a/types/logger_logger.LoggerLevelValue.html +++ b/types/logger_logger.LoggerLevelValue.html @@ -1,2 +1,2 @@ LoggerLevelValue | @salesforce/core
    LoggerLevelValue: LoggerLevel | number

    Any numeric Logger level.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/logger_logger.LoggerOptions.html b/types/logger_logger.LoggerOptions.html index c243c6680..588f688ac 100644 --- a/types/logger_logger.LoggerOptions.html +++ b/types/logger_logger.LoggerOptions.html @@ -3,4 +3,4 @@
  • Optional level?: LoggerLevelValue

    The desired log level.

  • name: string

    The logger name.

  • Optional useMemoryLogger?: boolean

    log to memory instead of to a file. Intended for Unit Testing

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/messages.LoaderFunction.html b/types/messages.LoaderFunction.html index d17313075..7b8560469 100644 --- a/types/messages.LoaderFunction.html +++ b/types/messages.LoaderFunction.html @@ -1,3 +1,3 @@ LoaderFunction | @salesforce/core

    Type alias LoaderFunction<T>

    LoaderFunction<T>: ((locale) => Messages<T>)

    A loader function to return messages.

    Type Parameters

    • T extends string

    Type declaration

      • (locale): Messages<T>
      • Parameters

        • locale: string

          The local set by the framework.

          -

        Returns Messages<T>

    \ No newline at end of file +

    Returns Messages<T>

    \ No newline at end of file diff --git a/types/messages.StoredMessage.html b/types/messages.StoredMessage.html index f9e977fb4..4f2c78ed0 100644 --- a/types/messages.StoredMessage.html +++ b/types/messages.StoredMessage.html @@ -1 +1 @@ -StoredMessage | @salesforce/core
    StoredMessage: string | string[] | {
        [s: string]: StoredMessage;
    }

    Type declaration

    \ No newline at end of file +StoredMessage | @salesforce/core
    StoredMessage: string | string[] | {
        [s: string]: StoredMessage;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/messages.StoredMessageMap.html b/types/messages.StoredMessageMap.html index 4221ae53d..49d3062d8 100644 --- a/types/messages.StoredMessageMap.html +++ b/types/messages.StoredMessageMap.html @@ -1 +1 @@ -StoredMessageMap | @salesforce/core

    Type alias StoredMessageMap

    StoredMessageMap: Map<string, StoredMessage>
    \ No newline at end of file +StoredMessageMap | @salesforce/core

    Type alias StoredMessageMap

    StoredMessageMap: Map<string, StoredMessage>
    \ No newline at end of file diff --git a/types/messages.StructuredMessage.html b/types/messages.StructuredMessage.html index b9915331d..de9e20917 100644 --- a/types/messages.StructuredMessage.html +++ b/types/messages.StructuredMessage.html @@ -1 +1 @@ -StructuredMessage | @salesforce/core

    Type alias StructuredMessage

    StructuredMessage: {
        actions?: string[];
        message: string;
        name: string;
    }

    Type declaration

    • Optional actions?: string[]
    • message: string
    • name: string
    \ No newline at end of file +StructuredMessage | @salesforce/core

    Type alias StructuredMessage

    StructuredMessage: {
        actions?: string[];
        message: string;
        name: string;
    }

    Type declaration

    • Optional actions?: string[]
    • message: string
    • name: string
    \ No newline at end of file diff --git a/types/messages.Tokens.html b/types/messages.Tokens.html index 9e3385f8e..85c1c1304 100644 --- a/types/messages.Tokens.html +++ b/types/messages.Tokens.html @@ -1 +1 @@ -Tokens | @salesforce/core
    Tokens: (string | boolean | number | null | undefined)[]
    \ No newline at end of file +Tokens | @salesforce/core
    Tokens: (string | boolean | number | null | undefined)[]
    \ No newline at end of file diff --git a/types/org_authInfo.AccessTokenOptions.html b/types/org_authInfo.AccessTokenOptions.html index 0574949c0..fc40512c0 100644 --- a/types/org_authInfo.AccessTokenOptions.html +++ b/types/org_authInfo.AccessTokenOptions.html @@ -1,2 +1,2 @@ AccessTokenOptions | @salesforce/core
    AccessTokenOptions: {
        accessToken?: string;
        instanceUrl?: string;
        loginUrl?: string;
    }

    Options for access token flow.

    -

    Type declaration

    • Optional accessToken?: string
    • Optional instanceUrl?: string
    • Optional loginUrl?: string
    \ No newline at end of file +

    Type declaration

    • Optional accessToken?: string
    • Optional instanceUrl?: string
    • Optional loginUrl?: string
    \ No newline at end of file diff --git a/types/org_authInfo.AuthFields.html b/types/org_authInfo.AuthFields.html index 424f86b0d..14483c392 100644 --- a/types/org_authInfo.AuthFields.html +++ b/types/org_authInfo.AuthFields.html @@ -1,2 +1,2 @@ AuthFields | @salesforce/core
    AuthFields: {
        accessToken?: string;
        alias?: string;
        authCode?: string;
        clientId?: string;
        clientSecret?: string;
        created?: string;
        createdOrgInstance?: string;
        devHubUsername?: string;
        expirationDate?: string;
        instanceApiVersion?: string;
        instanceApiVersionLastRetrieved?: string;
        instanceName?: string;
        instanceUrl?: string;
        isDevHub?: boolean;
        isSandbox?: boolean;
        isScratch?: boolean;
        loginUrl?: string;
        name?: string;
        namespacePrefix?: Nullable<string>;
        orgId?: string;
        password?: string;
        privateKey?: string;
        refreshToken?: string;
        scratchAdminUsername?: string;
        snapshot?: string;
        tracksSource?: boolean;
        trailExpirationDate?: Nullable<string>;
        userId?: string;
        userProfileName?: string;
        username?: string;
        usernames?: string[];
    }

    Fields for authorization, org, and local information.

    -

    Type declaration

    • Optional accessToken?: string
    • Optional alias?: string
    • Optional authCode?: string
    • Optional clientId?: string
    • Optional clientSecret?: string
    • Optional created?: string
    • Optional createdOrgInstance?: string
    • Optional devHubUsername?: string
    • Optional expirationDate?: string
    • Optional instanceApiVersion?: string
    • Optional instanceApiVersionLastRetrieved?: string
    • Optional instanceName?: string
    • Optional instanceUrl?: string
    • Optional isDevHub?: boolean
    • Optional isSandbox?: boolean
    • Optional isScratch?: boolean
    • Optional loginUrl?: string
    • Optional name?: string
    • Optional namespacePrefix?: Nullable<string>
    • Optional orgId?: string
    • Optional password?: string
    • Optional privateKey?: string
    • Optional refreshToken?: string
    • Optional scratchAdminUsername?: string
    • Optional snapshot?: string
    • Optional tracksSource?: boolean
    • Optional trailExpirationDate?: Nullable<string>
    • Optional userId?: string
    • Optional userProfileName?: string
    • Optional username?: string
    • Optional usernames?: string[]
    \ No newline at end of file +

    Type declaration

    • Optional accessToken?: string
    • Optional alias?: string
    • Optional authCode?: string
    • Optional clientId?: string
    • Optional clientSecret?: string
    • Optional created?: string
    • Optional createdOrgInstance?: string
    • Optional devHubUsername?: string
    • Optional expirationDate?: string
    • Optional instanceApiVersion?: string
    • Optional instanceApiVersionLastRetrieved?: string
    • Optional instanceName?: string
    • Optional instanceUrl?: string
    • Optional isDevHub?: boolean
    • Optional isSandbox?: boolean
    • Optional isScratch?: boolean
    • Optional loginUrl?: string
    • Optional name?: string
    • Optional namespacePrefix?: Nullable<string>
    • Optional orgId?: string
    • Optional password?: string
    • Optional privateKey?: string
    • Optional refreshToken?: string
    • Optional scratchAdminUsername?: string
    • Optional snapshot?: string
    • Optional tracksSource?: boolean
    • Optional trailExpirationDate?: Nullable<string>
    • Optional userId?: string
    • Optional userProfileName?: string
    • Optional username?: string
    • Optional usernames?: string[]
    \ No newline at end of file diff --git a/types/org_authInfo.AuthInfo.Options.html b/types/org_authInfo.AuthInfo.Options.html index 76a011d52..ba6d74714 100644 --- a/types/org_authInfo.AuthInfo.Options.html +++ b/types/org_authInfo.AuthInfo.Options.html @@ -5,4 +5,4 @@ information from another parent org. Typically for scratch org or sandbox creation.

  • Optional username?: string

    Org signup username.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/org_authInfo.AuthSideEffects.html b/types/org_authInfo.AuthSideEffects.html index 2f1d3e943..da39c0753 100644 --- a/types/org_authInfo.AuthSideEffects.html +++ b/types/org_authInfo.AuthSideEffects.html @@ -1 +1 @@ -AuthSideEffects | @salesforce/core
    AuthSideEffects: {
        alias?: string;
        setDefault: boolean;
        setDefaultDevHub: boolean;
        setTracksSource?: boolean;
    }

    Type declaration

    • Optional alias?: string
    • setDefault: boolean
    • setDefaultDevHub: boolean
    • Optional setTracksSource?: boolean
    \ No newline at end of file +AuthSideEffects | @salesforce/core
    AuthSideEffects: {
        alias?: string;
        setDefault: boolean;
        setDefaultDevHub: boolean;
        setTracksSource?: boolean;
    }

    Type declaration

    • Optional alias?: string
    • setDefault: boolean
    • setDefaultDevHub: boolean
    • Optional setTracksSource?: boolean
    \ No newline at end of file diff --git a/types/org_authInfo.ConnectionOptions.html b/types/org_authInfo.ConnectionOptions.html index f580dd2b5..773b27333 100644 --- a/types/org_authInfo.ConnectionOptions.html +++ b/types/org_authInfo.ConnectionOptions.html @@ -1,4 +1,4 @@ ConnectionOptions | @salesforce/core
    ConnectionOptions: AuthFields & {
        oauth2?: Partial<JwtOAuth2Config>;
        refreshFn?: RefreshFn;
    }

    Options for Connection.

    Type declaration

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/org_authInfo.JwtOAuth2Config.html b/types/org_authInfo.JwtOAuth2Config.html index 77c54055d..a985b0ec8 100644 --- a/types/org_authInfo.JwtOAuth2Config.html +++ b/types/org_authInfo.JwtOAuth2Config.html @@ -1 +1 @@ -JwtOAuth2Config | @salesforce/core
    JwtOAuth2Config: OAuth2Config & {
        authCode?: string;
        privateKey?: string;
        privateKeyFile?: string;
        refreshToken?: string;
        username?: string;
    }

    Type declaration

    • Optional authCode?: string
    • Optional privateKey?: string
    • Optional privateKeyFile?: string
    • Optional refreshToken?: string
    • Optional username?: string
    \ No newline at end of file +JwtOAuth2Config | @salesforce/core
    JwtOAuth2Config: OAuth2Config & {
        authCode?: string;
        privateKey?: string;
        privateKeyFile?: string;
        refreshToken?: string;
        username?: string;
    }

    Type declaration

    • Optional authCode?: string
    • Optional privateKey?: string
    • Optional privateKeyFile?: string
    • Optional refreshToken?: string
    • Optional username?: string
    \ No newline at end of file diff --git a/types/org_authInfo.OrgAuthorization.html b/types/org_authInfo.OrgAuthorization.html index 31e9f9e01..5219fb641 100644 --- a/types/org_authInfo.OrgAuthorization.html +++ b/types/org_authInfo.OrgAuthorization.html @@ -1 +1 @@ -OrgAuthorization | @salesforce/core
    OrgAuthorization: {
        accessToken?: string;
        aliases: Nullable<string[]>;
        configs: Nullable<string[]>;
        error?: string;
        instanceUrl?: string;
        isDevHub?: boolean;
        isExpired: boolean | "unknown";
        isSandbox?: boolean;
        isScratchOrg?: boolean;
        oauthMethod: "jwt" | "web" | "token" | "unknown";
        orgId: string;
        username: string;
    }

    Type declaration

    • Optional accessToken?: string
    • aliases: Nullable<string[]>
    • configs: Nullable<string[]>
    • Optional error?: string
    • Optional instanceUrl?: string
    • Optional isDevHub?: boolean
    • isExpired: boolean | "unknown"
    • Optional isSandbox?: boolean
    • Optional isScratchOrg?: boolean
    • oauthMethod: "jwt" | "web" | "token" | "unknown"
    • orgId: string
    • username: string
    \ No newline at end of file +OrgAuthorization | @salesforce/core
    OrgAuthorization: {
        accessToken?: string;
        aliases: Nullable<string[]>;
        configs: Nullable<string[]>;
        error?: string;
        instanceUrl?: string;
        isDevHub?: boolean;
        isExpired: boolean | "unknown";
        isSandbox?: boolean;
        isScratchOrg?: boolean;
        oauthMethod: "jwt" | "web" | "token" | "unknown";
        orgId: string;
        username: string;
    }

    Type declaration

    • Optional accessToken?: string
    • aliases: Nullable<string[]>
    • configs: Nullable<string[]>
    • Optional error?: string
    • Optional instanceUrl?: string
    • Optional isDevHub?: boolean
    • isExpired: boolean | "unknown"
    • Optional isSandbox?: boolean
    • Optional isScratchOrg?: boolean
    • oauthMethod: "jwt" | "web" | "token" | "unknown"
    • orgId: string
    • username: string
    \ No newline at end of file diff --git a/types/org_authInfo.RefreshFn.html b/types/org_authInfo.RefreshFn.html index 995f4d096..8955e0005 100644 --- a/types/org_authInfo.RefreshFn.html +++ b/types/org_authInfo.RefreshFn.html @@ -1,2 +1,2 @@ RefreshFn | @salesforce/core
    RefreshFn: ((conn, callback) => Promise<void>)

    A function to update a refresh token when the access token is expired.

    -

    Type declaration

      • (conn, callback): Promise<void>
      • Parameters

        • conn: Connection
        • callback: ((err, accessToken?, res?) => Promise<void>)
            • (err, accessToken?, res?): Promise<void>
            • Parameters

              • err: Nullable<Error>
              • Optional accessToken: string
              • Optional res: Record<string, unknown>

              Returns Promise<void>

        Returns Promise<void>

    \ No newline at end of file +

    Type declaration

      • (conn, callback): Promise<void>
      • Parameters

        • conn: Connection
        • callback: ((err, accessToken?, res?) => Promise<void>)
            • (err, accessToken?, res?): Promise<void>
            • Parameters

              • err: Nullable<Error>
              • Optional accessToken: string
              • Optional res: Record<string, unknown>

              Returns Promise<void>

        Returns Promise<void>

    \ No newline at end of file diff --git a/types/org_connection.Connection.Options.html b/types/org_connection.Connection.Options.html index 6d7e69b04..7f4666870 100644 --- a/types/org_connection.Connection.Options.html +++ b/types/org_connection.Connection.Options.html @@ -2,4 +2,4 @@

    Type Parameters

    • S extends Schema

    Type declaration

    • authInfo: AuthInfo

      AuthInfo instance.

    • Optional configAggregator?: ConfigAggregator

      ConfigAggregator for getting defaults.

    • Optional connectionOptions?: ConnectionConfig<S>

      Additional connection parameters.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/org_connection.DeployOptionsWithRest.html b/types/org_connection.DeployOptionsWithRest.html index 698418541..572320243 100644 --- a/types/org_connection.DeployOptionsWithRest.html +++ b/types/org_connection.DeployOptionsWithRest.html @@ -1 +1 @@ -DeployOptionsWithRest | @salesforce/core
    DeployOptionsWithRest: Partial<DeployOptions> & {
        rest?: boolean;
    }

    Type declaration

    • Optional rest?: boolean
    \ No newline at end of file +DeployOptionsWithRest | @salesforce/core
    DeployOptionsWithRest: Partial<DeployOptions> & {
        rest?: boolean;
    }

    Type declaration

    • Optional rest?: boolean
    \ No newline at end of file diff --git a/types/org_connection.SingleRecordQueryOptions.html b/types/org_connection.SingleRecordQueryOptions.html index 0a042b926..900068057 100644 --- a/types/org_connection.SingleRecordQueryOptions.html +++ b/types/org_connection.SingleRecordQueryOptions.html @@ -1 +1 @@ -SingleRecordQueryOptions | @salesforce/core
    SingleRecordQueryOptions: {
        choiceField?: string;
        returnChoicesOnMultiple?: boolean;
        tooling?: boolean;
    }

    Type declaration

    • Optional choiceField?: string
    • Optional returnChoicesOnMultiple?: boolean
    • Optional tooling?: boolean
    \ No newline at end of file +SingleRecordQueryOptions | @salesforce/core
    SingleRecordQueryOptions: {
        choiceField?: string;
        returnChoicesOnMultiple?: boolean;
        tooling?: boolean;
    }

    Type declaration

    • Optional choiceField?: string
    • Optional returnChoicesOnMultiple?: boolean
    • Optional tooling?: boolean
    \ No newline at end of file diff --git a/types/org_org.Org.Options.html b/types/org_org.Org.Options.html index 7a91350fb..bdeb5a2ab 100644 --- a/types/org_org.Org.Options.html +++ b/types/org_org.Org.Options.html @@ -1,2 +1,2 @@ Options | @salesforce/core
    Options: {
        aggregator?: ConfigAggregator;
        aliasOrUsername?: string;
        connection?: Connection;
        isDevHub?: boolean;
    }

    Constructor Options for and Org.

    -

    Type declaration

    • Optional aggregator?: ConfigAggregator
    • Optional aliasOrUsername?: string
    • Optional connection?: Connection
    • Optional isDevHub?: boolean
    \ No newline at end of file +

    Type declaration

    • Optional aggregator?: ConfigAggregator
    • Optional aliasOrUsername?: string
    • Optional connection?: Connection
    • Optional isDevHub?: boolean
    \ No newline at end of file diff --git a/types/org_org.OrganizationInformation.html b/types/org_org.OrganizationInformation.html index d9c1b04c9..0f644f847 100644 --- a/types/org_org.OrganizationInformation.html +++ b/types/org_org.OrganizationInformation.html @@ -1 +1 @@ -OrganizationInformation | @salesforce/core

    Type alias OrganizationInformation

    OrganizationInformation: {
        InstanceName: string;
        IsSandbox: boolean;
        Name: string;
        NamespacePrefix: string | null;
        TrialExpirationDate: string | null;
    }

    Type declaration

    • InstanceName: string
    • IsSandbox: boolean
    • Name: string
    • NamespacePrefix: string | null
    • TrialExpirationDate: string | null
    \ No newline at end of file +OrganizationInformation | @salesforce/core

    Type alias OrganizationInformation

    OrganizationInformation: {
        InstanceName: string;
        IsSandbox: boolean;
        Name: string;
        NamespacePrefix: string | null;
        TrialExpirationDate: string | null;
    }

    Type declaration

    • InstanceName: string
    • IsSandbox: boolean
    • Name: string
    • NamespacePrefix: string | null
    • TrialExpirationDate: string | null
    \ No newline at end of file diff --git a/types/org_org.ResultEvent.html b/types/org_org.ResultEvent.html index 0aa3b9433..9fdd98177 100644 --- a/types/org_org.ResultEvent.html +++ b/types/org_org.ResultEvent.html @@ -1 +1 @@ -ResultEvent | @salesforce/core
    ResultEvent: {
        sandboxProcessObj: SandboxProcessObject;
        sandboxRes: SandboxUserAuthResponse;
    }

    Type declaration

    \ No newline at end of file +ResultEvent | @salesforce/core
    ResultEvent: {
        sandboxProcessObj: SandboxProcessObject;
        sandboxRes: SandboxUserAuthResponse;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/org_org.ResumeSandboxRequest.html b/types/org_org.ResumeSandboxRequest.html index 58666e5ed..90817b61a 100644 --- a/types/org_org.ResumeSandboxRequest.html +++ b/types/org_org.ResumeSandboxRequest.html @@ -1 +1 @@ -ResumeSandboxRequest | @salesforce/core

    Type alias ResumeSandboxRequest

    ResumeSandboxRequest: {
        SandboxName?: string;
        SandboxProcessObjId?: string;
    }

    Type declaration

    • Optional SandboxName?: string
    • Optional SandboxProcessObjId?: string
    \ No newline at end of file +ResumeSandboxRequest | @salesforce/core

    Type alias ResumeSandboxRequest

    ResumeSandboxRequest: {
        SandboxName?: string;
        SandboxProcessObjId?: string;
    }

    Type declaration

    • Optional SandboxName?: string
    • Optional SandboxProcessObjId?: string
    \ No newline at end of file diff --git a/types/org_org.SandboxFields.html b/types/org_org.SandboxFields.html index 3688007ea..162da4258 100644 --- a/types/org_org.SandboxFields.html +++ b/types/org_org.SandboxFields.html @@ -1 +1 @@ -SandboxFields | @salesforce/core

    Type alias SandboxFields

    SandboxFields: {
        prodOrgUsername: string;
        sandboxInfoId?: string;
        sandboxName?: string;
        sandboxOrgId: string;
        sandboxProcessId?: string;
        sandboxUsername?: string;
        timestamp?: string;
    }

    Type declaration

    • prodOrgUsername: string
    • Optional sandboxInfoId?: string
    • Optional sandboxName?: string
    • sandboxOrgId: string
    • Optional sandboxProcessId?: string
    • Optional sandboxUsername?: string
    • Optional timestamp?: string
    \ No newline at end of file +SandboxFields | @salesforce/core

    Type alias SandboxFields

    SandboxFields: {
        prodOrgUsername: string;
        sandboxInfoId?: string;
        sandboxName?: string;
        sandboxOrgId: string;
        sandboxProcessId?: string;
        sandboxUsername?: string;
        timestamp?: string;
    }

    Type declaration

    • prodOrgUsername: string
    • Optional sandboxInfoId?: string
    • Optional sandboxName?: string
    • sandboxOrgId: string
    • Optional sandboxProcessId?: string
    • Optional sandboxUsername?: string
    • Optional timestamp?: string
    \ No newline at end of file diff --git a/types/org_org.SandboxInfo.html b/types/org_org.SandboxInfo.html index d96d6c19b..07c73a3d6 100644 --- a/types/org_org.SandboxInfo.html +++ b/types/org_org.SandboxInfo.html @@ -1 +1 @@ -SandboxInfo | @salesforce/core
    SandboxInfo: {
        ActivationUserGroupId?: string;
        ApexClassId?: string;
        AutoActivate: boolean;
        CopyArchivedActivities?: boolean;
        CopyChatter: boolean;
        CreatedById: string;
        CreatedDate: string;
        Description?: string;
        HistoryDays: -1 | 0 | 10 | 20 | 30 | 60 | 90 | 120 | 150 | 180;
        Id: string;
        IsDeleted: boolean;
        LastModifiedById: string;
        LastModifiedDate: string;
        LicenseType: "DEVELOPER" | "DEVELOPER PRO" | "PARTIAL" | "FULL";
        SandboxName: string;
        SourceId?: string;
        TemplateId?: string;
    }

    Type declaration

    • Optional ActivationUserGroupId?: string
    • Optional ApexClassId?: string
    • AutoActivate: boolean
    • Optional CopyArchivedActivities?: boolean
    • CopyChatter: boolean
    • CreatedById: string
    • CreatedDate: string
    • Optional Description?: string
    • HistoryDays: -1 | 0 | 10 | 20 | 30 | 60 | 90 | 120 | 150 | 180
    • Id: string
    • IsDeleted: boolean
    • LastModifiedById: string
    • LastModifiedDate: string
    • LicenseType: "DEVELOPER" | "DEVELOPER PRO" | "PARTIAL" | "FULL"
    • SandboxName: string
    • Optional SourceId?: string
    • Optional TemplateId?: string
    \ No newline at end of file +SandboxInfo | @salesforce/core
    SandboxInfo: {
        ActivationUserGroupId?: string;
        ApexClassId?: string;
        AutoActivate: boolean;
        CopyArchivedActivities?: boolean;
        CopyChatter: boolean;
        CreatedById: string;
        CreatedDate: string;
        Description?: string;
        HistoryDays: -1 | 0 | 10 | 20 | 30 | 60 | 90 | 120 | 150 | 180;
        Id: string;
        IsDeleted: boolean;
        LastModifiedById: string;
        LastModifiedDate: string;
        LicenseType: "DEVELOPER" | "DEVELOPER PRO" | "PARTIAL" | "FULL";
        SandboxName: string;
        SourceId?: string;
        TemplateId?: string;
    }

    Type declaration

    • Optional ActivationUserGroupId?: string
    • Optional ApexClassId?: string
    • AutoActivate: boolean
    • Optional CopyArchivedActivities?: boolean
    • CopyChatter: boolean
    • CreatedById: string
    • CreatedDate: string
    • Optional Description?: string
    • HistoryDays: -1 | 0 | 10 | 20 | 30 | 60 | 90 | 120 | 150 | 180
    • Id: string
    • IsDeleted: boolean
    • LastModifiedById: string
    • LastModifiedDate: string
    • LicenseType: "DEVELOPER" | "DEVELOPER PRO" | "PARTIAL" | "FULL"
    • SandboxName: string
    • Optional SourceId?: string
    • Optional TemplateId?: string
    \ No newline at end of file diff --git a/types/org_org.SandboxProcessObject.html b/types/org_org.SandboxProcessObject.html index 6131fec3e..a85a30193 100644 --- a/types/org_org.SandboxProcessObject.html +++ b/types/org_org.SandboxProcessObject.html @@ -1 +1 @@ -SandboxProcessObject | @salesforce/core

    Type alias SandboxProcessObject

    SandboxProcessObject: {
        ApexClassId?: string;
        CopyProgress?: number;
        CreatedDate: string;
        Description?: string;
        EndDate?: string;
        Id: string;
        LicenseType: string;
        SandboxInfoId: string;
        SandboxName: string;
        SandboxOrganization?: string;
        SourceId?: string;
        Status: string;
    }

    Type declaration

    • Optional ApexClassId?: string
    • Optional CopyProgress?: number
    • CreatedDate: string
    • Optional Description?: string
    • Optional EndDate?: string
    • Id: string
    • LicenseType: string
    • SandboxInfoId: string
    • SandboxName: string
    • Optional SandboxOrganization?: string
    • Optional SourceId?: string
    • Status: string
    \ No newline at end of file +SandboxProcessObject | @salesforce/core

    Type alias SandboxProcessObject

    SandboxProcessObject: {
        ApexClassId?: string;
        CopyProgress?: number;
        CreatedDate: string;
        Description?: string;
        EndDate?: string;
        Id: string;
        LicenseType: string;
        SandboxInfoId: string;
        SandboxName: string;
        SandboxOrganization?: string;
        SourceId?: string;
        Status: string;
    }

    Type declaration

    • Optional ApexClassId?: string
    • Optional CopyProgress?: number
    • CreatedDate: string
    • Optional Description?: string
    • Optional EndDate?: string
    • Id: string
    • LicenseType: string
    • SandboxInfoId: string
    • SandboxName: string
    • Optional SandboxOrganization?: string
    • Optional SourceId?: string
    • Status: string
    \ No newline at end of file diff --git a/types/org_org.SandboxRequest.html b/types/org_org.SandboxRequest.html index ac2f75d0b..8cac6ad29 100644 --- a/types/org_org.SandboxRequest.html +++ b/types/org_org.SandboxRequest.html @@ -1,2 +1,2 @@ SandboxRequest | @salesforce/core

    Type alias SandboxRequest

    SandboxRequest: {
        ActivationUserGroupId?: string;
        ApexClassId?: string;
        Description?: string;
        LicenseType?: string;
        SandboxName: string;
        SourceId?: string;
    }

    Type declaration

    • Optional ActivationUserGroupId?: string
    • Optional ApexClassId?: string
    • Optional Description?: string
    • Optional LicenseType?: string
    • SandboxName: string
    • Optional SourceId?: string

      Should match a SandboxInfoId, not a SandboxProcessId

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/org_org.SandboxUserAuthRequest.html b/types/org_org.SandboxUserAuthRequest.html index 598098d2e..16227ae79 100644 --- a/types/org_org.SandboxUserAuthRequest.html +++ b/types/org_org.SandboxUserAuthRequest.html @@ -1 +1 @@ -SandboxUserAuthRequest | @salesforce/core

    Type alias SandboxUserAuthRequest

    SandboxUserAuthRequest: {
        callbackUrl: string;
        clientId: string;
        sandboxName: string;
    }

    Type declaration

    • callbackUrl: string
    • clientId: string
    • sandboxName: string
    \ No newline at end of file +SandboxUserAuthRequest | @salesforce/core

    Type alias SandboxUserAuthRequest

    SandboxUserAuthRequest: {
        callbackUrl: string;
        clientId: string;
        sandboxName: string;
    }

    Type declaration

    • callbackUrl: string
    • clientId: string
    • sandboxName: string
    \ No newline at end of file diff --git a/types/org_org.SandboxUserAuthResponse.html b/types/org_org.SandboxUserAuthResponse.html index a3ad93a82..463cd6f84 100644 --- a/types/org_org.SandboxUserAuthResponse.html +++ b/types/org_org.SandboxUserAuthResponse.html @@ -1 +1 @@ -SandboxUserAuthResponse | @salesforce/core

    Type alias SandboxUserAuthResponse

    SandboxUserAuthResponse: {
        authCode: string;
        authUserName: string;
        instanceUrl: string;
        loginUrl: string;
    }

    Type declaration

    • authCode: string
    • authUserName: string
    • instanceUrl: string
    • loginUrl: string
    \ No newline at end of file +SandboxUserAuthResponse | @salesforce/core

    Type alias SandboxUserAuthResponse

    SandboxUserAuthResponse: {
        authCode: string;
        authUserName: string;
        instanceUrl: string;
        loginUrl: string;
    }

    Type declaration

    • authCode: string
    • authUserName: string
    • instanceUrl: string
    • loginUrl: string
    \ No newline at end of file diff --git a/types/org_org.ScratchOrgRequest.html b/types/org_org.ScratchOrgRequest.html index 1b6a7d9fb..568fb2a17 100644 --- a/types/org_org.ScratchOrgRequest.html +++ b/types/org_org.ScratchOrgRequest.html @@ -1 +1 @@ -ScratchOrgRequest | @salesforce/core

    Type alias ScratchOrgRequest

    ScratchOrgRequest: Omit<ScratchOrgCreateOptions, "hubOrg">
    \ No newline at end of file +ScratchOrgRequest | @salesforce/core

    Type alias ScratchOrgRequest

    ScratchOrgRequest: Omit<ScratchOrgCreateOptions, "hubOrg">
    \ No newline at end of file diff --git a/types/org_org.StatusEvent.html b/types/org_org.StatusEvent.html index 2e38496ff..543165aae 100644 --- a/types/org_org.StatusEvent.html +++ b/types/org_org.StatusEvent.html @@ -1 +1 @@ -StatusEvent | @salesforce/core
    StatusEvent: {
        interval: number;
        remainingWait: number;
        sandboxProcessObj: SandboxProcessObject;
        waitingOnAuth: boolean;
    }

    Type declaration

    \ No newline at end of file +StatusEvent | @salesforce/core
    StatusEvent: {
        interval: number;
        remainingWait: number;
        sandboxProcessObj: SandboxProcessObject;
        waitingOnAuth: boolean;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/org_permissionSetAssignment.PermissionSetAssignmentFields.html b/types/org_permissionSetAssignment.PermissionSetAssignmentFields.html index 956be7dc9..f18e2abf6 100644 --- a/types/org_permissionSetAssignment.PermissionSetAssignmentFields.html +++ b/types/org_permissionSetAssignment.PermissionSetAssignmentFields.html @@ -1,2 +1,2 @@ PermissionSetAssignmentFields | @salesforce/core
    PermissionSetAssignmentFields: {
        assigneeId: string;
        permissionSetId: string;
    }

    Map of fields name for a permission set assignment

    -

    Type declaration

    • assigneeId: string
    • permissionSetId: string
    \ No newline at end of file +

    Type declaration

    • assigneeId: string
    • permissionSetId: string
    \ No newline at end of file diff --git a/types/org_scratchOrgCache.CachedOptions.html b/types/org_scratchOrgCache.CachedOptions.html index 0509d0766..6cbfba498 100644 --- a/types/org_scratchOrgCache.CachedOptions.html +++ b/types/org_scratchOrgCache.CachedOptions.html @@ -1,3 +1,3 @@ CachedOptions | @salesforce/core
    CachedOptions: {
        alias?: string;
        apiVersion?: string;
        clientSecret?: string;
        definitionjson: JsonMap;
        hubBaseUrl: string;
        hubUsername: string;
        setDefault?: boolean;
        signupTargetLoginUrlConfig?: string;
        tracksSource?: boolean;
    }

    Type declaration

    • Optional alias?: string
    • Optional apiVersion?: string
    • Optional clientSecret?: string

      may be required for auth

    • definitionjson: JsonMap

      stores the scratch definition, including settings/objectSettings

      -
    • hubBaseUrl: string
    • hubUsername: string
    • Optional setDefault?: boolean
    • Optional signupTargetLoginUrlConfig?: string
    • Optional tracksSource?: boolean
    \ No newline at end of file +
  • hubBaseUrl: string
  • hubUsername: string
  • Optional setDefault?: boolean
  • Optional signupTargetLoginUrlConfig?: string
  • Optional tracksSource?: boolean
  • \ No newline at end of file diff --git a/types/org_scratchOrgCreate.ScratchOrgCreateOptions.html b/types/org_scratchOrgCreate.ScratchOrgCreateOptions.html index 57b3bdaec..1087e4cbe 100644 --- a/types/org_scratchOrgCreate.ScratchOrgCreateOptions.html +++ b/types/org_scratchOrgCreate.ScratchOrgCreateOptions.html @@ -15,4 +15,4 @@
  • Optional setDefault?: boolean

    after complete, set the org as the default

  • Optional tracksSource?: boolean

    if false, do not use source tracking for this scratch org

  • Optional wait?: Duration

    the streaming client socket timeout (in minutes) must be an instance of the Duration utility class (default:6)

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/org_scratchOrgCreate.ScratchOrgCreateResult.html b/types/org_scratchOrgCreate.ScratchOrgCreateResult.html index 97b2b28b2..20bde2167 100644 --- a/types/org_scratchOrgCreate.ScratchOrgCreateResult.html +++ b/types/org_scratchOrgCreate.ScratchOrgCreateResult.html @@ -1 +1 @@ -ScratchOrgCreateResult | @salesforce/core
    ScratchOrgCreateResult: {
        authFields?: AuthFields;
        authInfo?: AuthInfo;
        scratchOrgInfo?: ScratchOrgInfo;
        username?: string;
        warnings: string[];
    }

    Type declaration

    \ No newline at end of file +ScratchOrgCreateResult | @salesforce/core
    ScratchOrgCreateResult: {
        authFields?: AuthFields;
        authInfo?: AuthInfo;
        scratchOrgInfo?: ScratchOrgInfo;
        username?: string;
        warnings: string[];
    }

    Type declaration

    \ No newline at end of file diff --git a/types/org_scratchOrgInfoGenerator.ScratchOrgInfoPayload.html b/types/org_scratchOrgInfoGenerator.ScratchOrgInfoPayload.html index a6e8a3a83..5ba1f781e 100644 --- a/types/org_scratchOrgInfoGenerator.ScratchOrgInfoPayload.html +++ b/types/org_scratchOrgInfoGenerator.ScratchOrgInfoPayload.html @@ -1 +1 @@ -ScratchOrgInfoPayload | @salesforce/core
    ScratchOrgInfoPayload: {
        connectedAppCallbackUrl: string;
        connectedAppConsumerKey: string;
        durationDays: number;
        features: string | string[];
        namespace?: string;
        orgName: string;
        package2AncestorIds: string;
    } & PartialScratchOrgInfo

    Type declaration

    • connectedAppCallbackUrl: string
    • connectedAppConsumerKey: string
    • durationDays: number
    • features: string | string[]
    • Optional namespace?: string
    • orgName: string
    • package2AncestorIds: string
    \ No newline at end of file +ScratchOrgInfoPayload | @salesforce/core
    ScratchOrgInfoPayload: {
        connectedAppCallbackUrl: string;
        connectedAppConsumerKey: string;
        durationDays: number;
        features: string | string[];
        namespace?: string;
        orgName: string;
        package2AncestorIds: string;
    } & PartialScratchOrgInfo

    Type declaration

    • connectedAppCallbackUrl: string
    • connectedAppConsumerKey: string
    • durationDays: number
    • features: string | string[]
    • Optional namespace?: string
    • orgName: string
    • package2AncestorIds: string
    \ No newline at end of file diff --git a/types/org_scratchOrgLifecycleEvents.ScratchOrgLifecycleEvent.html b/types/org_scratchOrgLifecycleEvents.ScratchOrgLifecycleEvent.html index 28befd32d..a6c22d3fe 100644 --- a/types/org_scratchOrgLifecycleEvents.ScratchOrgLifecycleEvent.html +++ b/types/org_scratchOrgLifecycleEvents.ScratchOrgLifecycleEvent.html @@ -1 +1 @@ -ScratchOrgLifecycleEvent | @salesforce/core
    ScratchOrgLifecycleEvent: {
        scratchOrgInfo?: ScratchOrgInfo;
        stage: typeof scratchOrgLifecycleStages[number];
    }

    Type declaration

    \ No newline at end of file +ScratchOrgLifecycleEvent | @salesforce/core
    ScratchOrgLifecycleEvent: {
        scratchOrgInfo?: ScratchOrgInfo;
        stage: typeof scratchOrgLifecycleStages[number];
    }

    Type declaration

    \ No newline at end of file diff --git a/types/org_scratchOrgSettingsGenerator.PackageFile.html b/types/org_scratchOrgSettingsGenerator.PackageFile.html index b0f676356..20bbbb359 100644 --- a/types/org_scratchOrgSettingsGenerator.PackageFile.html +++ b/types/org_scratchOrgSettingsGenerator.PackageFile.html @@ -1 +1 @@ -PackageFile | @salesforce/core
    PackageFile: {
        @: {
            xmlns: string;
        };
        types: SettingType[];
        version: string;
    }

    Type declaration

    • @: {
          xmlns: string;
      }
      • xmlns: string
    • types: SettingType[]
    • version: string
    \ No newline at end of file +PackageFile | @salesforce/core
    PackageFile: {
        @: {
            xmlns: string;
        };
        types: SettingType[];
        version: string;
    }

    Type declaration

    • @: {
          xmlns: string;
      }
      • xmlns: string
    • types: SettingType[]
    • version: string
    \ No newline at end of file diff --git a/types/org_scratchOrgSettingsGenerator.SettingType.html b/types/org_scratchOrgSettingsGenerator.SettingType.html index b995096d9..85796b57d 100644 --- a/types/org_scratchOrgSettingsGenerator.SettingType.html +++ b/types/org_scratchOrgSettingsGenerator.SettingType.html @@ -1 +1 @@ -SettingType | @salesforce/core
    SettingType: {
        members: string[];
        name: "CustomObject" | "RecordType" | "BusinessProcess" | "Settings";
    }

    Type declaration

    • members: string[]
    • name: "CustomObject" | "RecordType" | "BusinessProcess" | "Settings"
    \ No newline at end of file +SettingType | @salesforce/core
    SettingType: {
        members: string[];
        name: "CustomObject" | "RecordType" | "BusinessProcess" | "Settings";
    }

    Type declaration

    • members: string[]
    • name: "CustomObject" | "RecordType" | "BusinessProcess" | "Settings"
    \ No newline at end of file diff --git a/types/org_scratchOrgTypes.ObjectSetting.html b/types/org_scratchOrgTypes.ObjectSetting.html index cf4fee2a3..523a44e96 100644 --- a/types/org_scratchOrgTypes.ObjectSetting.html +++ b/types/org_scratchOrgTypes.ObjectSetting.html @@ -1 +1 @@ -ObjectSetting | @salesforce/core
    ObjectSetting: {
        defaultRecordType?: string;
        sharingModel?: string;
    } & JsonMap

    Type declaration

    • Optional defaultRecordType?: string
    • Optional sharingModel?: string
    \ No newline at end of file +ObjectSetting | @salesforce/core
    ObjectSetting: {
        defaultRecordType?: string;
        sharingModel?: string;
    } & JsonMap

    Type declaration

    • Optional defaultRecordType?: string
    • Optional sharingModel?: string
    \ No newline at end of file diff --git a/types/org_scratchOrgTypes.ScratchOrgInfo.html b/types/org_scratchOrgTypes.ScratchOrgInfo.html index bfb83ca90..a2009aacf 100644 --- a/types/org_scratchOrgTypes.ScratchOrgInfo.html +++ b/types/org_scratchOrgTypes.ScratchOrgInfo.html @@ -1 +1 @@ -ScratchOrgInfo | @salesforce/core
    ScratchOrgInfo: {
        AdminEmail?: string;
        AuthCode: string;
        ConnectedAppCallbackUrl?: string;
        ConnectedAppConsumerKey?: string;
        Country?: string;
        CreatedDate?: string;
        Description?: string;
        DurationDays?: number;
        Edition?: string;
        ErrorCode?: string;
        ExpirationDate?: string;
        Features?: string;
        HasSampleData?: boolean;
        Id?: string;
        Language?: string;
        LoginUrl: string;
        Name?: string;
        Namespace?: string;
        OrgName?: string;
        Release?: "Current" | "Previous" | "Preview";
        ScratchOrg?: string;
        SignupEmail: string;
        SignupInstance: string;
        SignupUsername: string;
        Snapshot?: string;
        SourceOrg?: string;
        Status: "New" | "Creating" | "Active" | "Error" | "Deleted";
        Username: string;
        objectSettings?: {
            [objectName: string]: ObjectSetting;
        };
        orgPreferences?: {
            disabled: string[];
            enabled: string[];
        };
        settings?: Record<string, unknown>;
    }

    Type declaration

    • Optional AdminEmail?: string
    • Readonly AuthCode: string
    • Optional ConnectedAppCallbackUrl?: string
    • Optional ConnectedAppConsumerKey?: string
    • Optional Country?: string
    • Optional Readonly CreatedDate?: string
    • Optional Description?: string
    • Optional DurationDays?: number
    • Optional Edition?: string
    • Optional Readonly ErrorCode?: string
    • Optional Readonly ExpirationDate?: string
    • Optional Features?: string
    • Optional HasSampleData?: boolean
    • Optional Readonly Id?: string
    • Optional Language?: string
    • LoginUrl: string
    • Optional Readonly Name?: string
    • Optional Namespace?: string
    • Optional OrgName?: string
    • Optional Release?: "Current" | "Previous" | "Preview"
    • Optional Readonly ScratchOrg?: string
    • Readonly SignupEmail: string
    • Readonly SignupInstance: string
    • Readonly SignupUsername: string
    • Optional Snapshot?: string
    • Optional SourceOrg?: string
    • Readonly Status: "New" | "Creating" | "Active" | "Error" | "Deleted"
    • Username: string
    • Optional objectSettings?: {
          [objectName: string]: ObjectSetting;
      }
    • Optional orgPreferences?: {
          disabled: string[];
          enabled: string[];
      }
      • disabled: string[]
      • enabled: string[]
    • Optional settings?: Record<string, unknown>
    \ No newline at end of file +ScratchOrgInfo | @salesforce/core
    ScratchOrgInfo: {
        AdminEmail?: string;
        AuthCode: string;
        ConnectedAppCallbackUrl?: string;
        ConnectedAppConsumerKey?: string;
        Country?: string;
        CreatedDate?: string;
        Description?: string;
        DurationDays?: number;
        Edition?: string;
        ErrorCode?: string;
        ExpirationDate?: string;
        Features?: string;
        HasSampleData?: boolean;
        Id?: string;
        Language?: string;
        LoginUrl: string;
        Name?: string;
        Namespace?: string;
        OrgName?: string;
        Release?: "Current" | "Previous" | "Preview";
        ScratchOrg?: string;
        SignupEmail: string;
        SignupInstance: string;
        SignupUsername: string;
        Snapshot?: string;
        SourceOrg?: string;
        Status: "New" | "Creating" | "Active" | "Error" | "Deleted";
        Username: string;
        objectSettings?: {
            [objectName: string]: ObjectSetting;
        };
        orgPreferences?: {
            disabled: string[];
            enabled: string[];
        };
        settings?: Record<string, unknown>;
    }

    Type declaration

    • Optional AdminEmail?: string
    • Readonly AuthCode: string
    • Optional ConnectedAppCallbackUrl?: string
    • Optional ConnectedAppConsumerKey?: string
    • Optional Country?: string
    • Optional Readonly CreatedDate?: string
    • Optional Description?: string
    • Optional DurationDays?: number
    • Optional Edition?: string
    • Optional Readonly ErrorCode?: string
    • Optional Readonly ExpirationDate?: string
    • Optional Features?: string
    • Optional HasSampleData?: boolean
    • Optional Readonly Id?: string
    • Optional Language?: string
    • LoginUrl: string
    • Optional Readonly Name?: string
    • Optional Namespace?: string
    • Optional OrgName?: string
    • Optional Release?: "Current" | "Previous" | "Preview"
    • Optional Readonly ScratchOrg?: string
    • Readonly SignupEmail: string
    • Readonly SignupInstance: string
    • Readonly SignupUsername: string
    • Optional Snapshot?: string
    • Optional SourceOrg?: string
    • Readonly Status: "New" | "Creating" | "Active" | "Error" | "Deleted"
    • Username: string
    • Optional objectSettings?: {
          [objectName: string]: ObjectSetting;
      }
    • Optional orgPreferences?: {
          disabled: string[];
          enabled: string[];
      }
      • disabled: string[]
      • enabled: string[]
    • Optional settings?: Record<string, unknown>
    \ No newline at end of file diff --git a/types/org_user.DefaultUserFields.Options.html b/types/org_user.DefaultUserFields.Options.html index da9da1593..5bd218bf2 100644 --- a/types/org_user.DefaultUserFields.Options.html +++ b/types/org_user.DefaultUserFields.Options.html @@ -1,3 +1,3 @@ Options | @salesforce/core
    Options: {
        newUserName?: string;
        templateUser: string;
    }

    Used to initialize default values for fields based on a templateUser user. This user will be part of the Standard User profile.

    -

    Type declaration

    • Optional newUserName?: string
    • templateUser: string
    \ No newline at end of file +

    Type declaration

    • Optional newUserName?: string
    • templateUser: string
    \ No newline at end of file diff --git a/types/org_user.PasswordConditions.html b/types/org_user.PasswordConditions.html index 86f6dd290..70c404978 100644 --- a/types/org_user.PasswordConditions.html +++ b/types/org_user.PasswordConditions.html @@ -1 +1 @@ -PasswordConditions | @salesforce/core

    Type alias PasswordConditions

    PasswordConditions: {
        complexity: number;
        length: number;
    }

    Type declaration

    • complexity: number
    • length: number
    \ No newline at end of file +PasswordConditions | @salesforce/core

    Type alias PasswordConditions

    PasswordConditions: {
        complexity: number;
        length: number;
    }

    Type declaration

    • complexity: number
    • length: number
    \ No newline at end of file diff --git a/types/org_user.User.Options.html b/types/org_user.User.Options.html index 435743100..8729c8058 100644 --- a/types/org_user.User.Options.html +++ b/types/org_user.User.Options.html @@ -1,3 +1,3 @@ Options | @salesforce/core
    Options: {
        org: Org;
    }

    Used to initialize default values for fields based on a templateUser user. This user will be part of the Standard User profile.

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/types/org_user.UserFields.html b/types/org_user.UserFields.html index ed85c9113..2e147ea1e 100644 --- a/types/org_user.UserFields.html +++ b/types/org_user.UserFields.html @@ -1,3 +1,3 @@ UserFields | @salesforce/core
    UserFields: {
        -readonly [K in keyof typeof REQUIRED_FIELDS]: string
    }

    Required fields type needed to represent a Salesforce User object.

    See https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_user.htm

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/sfError.SfErrorOptions.html b/types/sfError.SfErrorOptions.html index 94013e746..5371ba526 100644 --- a/types/sfError.SfErrorOptions.html +++ b/types/sfError.SfErrorOptions.html @@ -1,2 +1,2 @@ SfErrorOptions | @salesforce/core

    Type alias SfErrorOptions<T>

    SfErrorOptions<T>: {
        actions?: string[];
        cause?: unknown;
        context?: string;
        data?: T;
        exitCode?: number;
        message: string;
        name?: string;
    }

    Type Parameters

    • T extends ErrorDataProperties = ErrorDataProperties

    Type declaration

    • Optional actions?: string[]
    • Optional cause?: unknown

      pass an Error. For convenience in catch blocks, code will check that it is, in fact, an Error

      -
    • Optional context?: string
    • Optional data?: T
    • Optional exitCode?: number
    • message: string
    • Optional name?: string
    \ No newline at end of file +
  • Optional context?: string
  • Optional data?: T
  • Optional exitCode?: number
  • message: string
  • Optional name?: string
  • \ No newline at end of file diff --git a/types/sfProject.NamedPackageDir.html b/types/sfProject.NamedPackageDir.html index e8ab1d3f7..283e3f884 100644 --- a/types/sfProject.NamedPackageDir.html +++ b/types/sfProject.NamedPackageDir.html @@ -1 +1 @@ -NamedPackageDir | @salesforce/core
    NamedPackageDir: PackageDir & NameAndFullPath
    \ No newline at end of file +NamedPackageDir | @salesforce/core
    NamedPackageDir: PackageDir & NameAndFullPath
    \ No newline at end of file diff --git a/types/sfProject.NamedPackagingDir.html b/types/sfProject.NamedPackagingDir.html index 7bedadded..e418ec837 100644 --- a/types/sfProject.NamedPackagingDir.html +++ b/types/sfProject.NamedPackagingDir.html @@ -1 +1 @@ -NamedPackagingDir | @salesforce/core

    Type alias NamedPackagingDir

    NamedPackagingDir: PackagePackageDir & NameAndFullPath
    \ No newline at end of file +NamedPackagingDir | @salesforce/core

    Type alias NamedPackagingDir

    NamedPackagingDir: PackagePackageDir & NameAndFullPath
    \ No newline at end of file diff --git a/types/sfProject.ProjectJson.html b/types/sfProject.ProjectJson.html index d961563ae..e40b980bf 100644 --- a/types/sfProject.ProjectJson.html +++ b/types/sfProject.ProjectJson.html @@ -1 +1 @@ -ProjectJson | @salesforce/core
    ProjectJson: ConfigContents & ProjectJsonSchema
    \ No newline at end of file +ProjectJson | @salesforce/core
    ProjectJson: ConfigContents & ProjectJsonSchema
    \ No newline at end of file diff --git a/types/stateAggregator_accessors_aliasAccessor.Aliasable.html b/types/stateAggregator_accessors_aliasAccessor.Aliasable.html index d8ff86f2f..0f02545d9 100644 --- a/types/stateAggregator_accessors_aliasAccessor.Aliasable.html +++ b/types/stateAggregator_accessors_aliasAccessor.Aliasable.html @@ -1 +1 @@ -Aliasable | @salesforce/core
    \ No newline at end of file +Aliasable | @salesforce/core
    \ No newline at end of file diff --git a/types/status_myDomainResolver.MyDomainResolver.Options.html b/types/status_myDomainResolver.MyDomainResolver.Options.html index e94204d26..9b53bc317 100644 --- a/types/status_myDomainResolver.MyDomainResolver.Options.html +++ b/types/status_myDomainResolver.MyDomainResolver.Options.html @@ -2,4 +2,4 @@

    Type declaration

    • Optional frequency?: Duration

      The retry timeout.

    • Optional timeout?: Duration

      The retry interval.

    • url: URL

      The host to resolve.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/status_pollingClient.PollingClient.Options.html b/types/status_pollingClient.PollingClient.Options.html index d66b3daed..6dacebb85 100644 --- a/types/status_pollingClient.PollingClient.Options.html +++ b/types/status_pollingClient.PollingClient.Options.html @@ -5,4 +5,4 @@
  • Optional timeoutErrorName?: string

    Change the name of the timeout error.

    if (err.name === 'MyChangedName) ...
     
    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/status_streamingClient.StreamingClientIfc.html b/types/status_streamingClient.StreamingClientIfc.html index 6b376096e..6d3ac5cc3 100644 --- a/types/status_streamingClient.StreamingClientIfc.html +++ b/types/status_streamingClient.StreamingClientIfc.html @@ -4,4 +4,4 @@
  • setLogger: ((logLine) => void)

    Sets the logger function for the CometClient.

      • (logLine): void
      • Parameters

        • logLine: ((message) => void)

          A log message passed to the the assigned function.

          -
            • (message): void
            • Parameters

              • message: string

              Returns void

        Returns void

  • \ No newline at end of file +
      • (message): void
      • Parameters

        • message: string

        Returns void

    Returns void

    \ No newline at end of file diff --git a/types/status_types.Callback.html b/types/status_types.Callback.html index 17747b17e..3b4753c1e 100644 --- a/types/status_types.Callback.html +++ b/types/status_types.Callback.html @@ -1 +1 @@ -Callback | @salesforce/core
    Callback<T>: ((...args) => T)

    Type Parameters

    • T = unknown

    Type declaration

      • (...args): T
      • Parameters

        • Rest ...args: any[]

        Returns T

    \ No newline at end of file +Callback | @salesforce/core
    Callback<T>: ((...args) => T)

    Type Parameters

    • T = unknown

    Type declaration

      • (...args): T
      • Parameters

        • Rest ...args: any[]

        Returns T

    \ No newline at end of file diff --git a/types/status_types.CometSubscription.html b/types/status_types.CometSubscription.html index 828ba09ed..053a905d1 100644 --- a/types/status_types.CometSubscription.html +++ b/types/status_types.CometSubscription.html @@ -1,2 +1,2 @@ CometSubscription | @salesforce/core
    CometSubscription: {
        callback(callback): void;
        errback(callback): void;
    }

    The subscription object returned from the cometd subscribe object.

    -

    Type declaration

    • callback:function
      • Parameters

        • callback: (() => void)
            • (): void
            • Returns void

        Returns void

    • errback:function
      • Parameters

        • callback: ((error) => void)
            • (error): void
            • Parameters

              • error: Error

              Returns void

        Returns void

    \ No newline at end of file +

    Type declaration

    • callback:function
      • Parameters

        • callback: (() => void)
            • (): void
            • Returns void

        Returns void

    • errback:function
      • Parameters

        • callback: ((error) => void)
            • (error): void
            • Parameters

              • error: Error

              Returns void

        Returns void

    \ No newline at end of file diff --git a/types/status_types.Message.html b/types/status_types.Message.html index 0977e3be8..994e54e45 100644 --- a/types/status_types.Message.html +++ b/types/status_types.Message.html @@ -1 +1 @@ -Message | @salesforce/core
    Message: JsonMap
    \ No newline at end of file +Message | @salesforce/core
    Message: JsonMap
    \ No newline at end of file diff --git a/types/status_types.StatusResult.html b/types/status_types.StatusResult.html index 78fb7f2ce..0d49d22be 100644 --- a/types/status_types.StatusResult.html +++ b/types/status_types.StatusResult.html @@ -1,4 +1,4 @@ StatusResult | @salesforce/core
    StatusResult: {
        completed: boolean;
        payload?: AnyJson;
    }

    Type declaration

    • completed: boolean

      Indicates to the streaming or polling client that the subscriber has what its needs. If true the client will end the messaging exchanges with the endpoint.

    • Optional payload?: AnyJson

      If the result of the streaming or polling client is expected to return a result

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/status_types.StreamProcessor.html b/types/status_types.StreamProcessor.html index 32771018d..212f153c2 100644 --- a/types/status_types.StreamProcessor.html +++ b/types/status_types.StreamProcessor.html @@ -1,2 +1,2 @@ StreamProcessor | @salesforce/core
    StreamProcessor: ((message) => StatusResult)

    Function type for processing messages

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/types/status_types.StreamingExtension.html b/types/status_types.StreamingExtension.html index ef7a46f40..833e61544 100644 --- a/types/status_types.StreamingExtension.html +++ b/types/status_types.StreamingExtension.html @@ -5,4 +5,4 @@

    Returns void

  • Optional outgoing?: ((message, callback) => void)

    Extension for outgoing message.

      • (message, callback): void
      • Parameters

        • message: JsonMap

          The message.

        • callback: AnyFunction

          The callback to invoke after the message is processed.

          -

        Returns void

  • \ No newline at end of file +

    Returns void

    \ No newline at end of file diff --git a/types/testSetup.ConfigStub.html b/types/testSetup.ConfigStub.html index 1f6754c0f..8efd7c150 100644 --- a/types/testSetup.ConfigStub.html +++ b/types/testSetup.ConfigStub.html @@ -9,4 +9,4 @@
  • Optional retrieveContents?: (() => Promise<JsonMap>)

    A function to conditionally read based on the config instance. The this value will be the config instance.

      • (): Promise<JsonMap>
      • Returns Promise<JsonMap>

  • Optional writeFn?: ((contents?) => Promise<void>)

    A function that controls all aspects of ConfigFile.write. For example, it won't read the contents unless explicitly done. Only use this if you know what you are doing. Use updateContents instead.

    -
      • (contents?): Promise<void>
      • Parameters

        • Optional contents: AnyJson

        Returns Promise<void>

  • \ No newline at end of file +
      • (contents?): Promise<void>
      • Parameters

        • Optional contents: AnyJson

        Returns Promise<void>

    \ No newline at end of file diff --git a/types/testSetup.SandboxTypes.html b/types/testSetup.SandboxTypes.html index 6a8b7dce2..d4a67521e 100644 --- a/types/testSetup.SandboxTypes.html +++ b/types/testSetup.SandboxTypes.html @@ -1,4 +1,4 @@ SandboxTypes | @salesforce/core
    SandboxTypes: {
        CONFIG: SinonSandbox;
        CONNECTION: SinonSandbox;
        CRYPTO: SinonSandbox;
        DEFAULT: SinonSandbox;
        FS: SinonSandbox;
        ORGS: SinonSandbox;
        PROJECT: SinonSandbox;
    }

    Different parts of the system that are mocked out. They can be restored for individual tests. Test's stubs should always go on the DEFAULT which is exposed on the TestContext.

    -

    Type declaration

    • CONFIG: SinonSandbox
    • CONNECTION: SinonSandbox
    • CRYPTO: SinonSandbox
    • DEFAULT: SinonSandbox
    • FS: SinonSandbox
    • ORGS: SinonSandbox
    • PROJECT: SinonSandbox
    \ No newline at end of file +

    Type declaration

    • CONFIG: SinonSandbox
    • CONNECTION: SinonSandbox
    • CRYPTO: SinonSandbox
    • DEFAULT: SinonSandbox
    • FS: SinonSandbox
    • ORGS: SinonSandbox
    • PROJECT: SinonSandbox
    \ No newline at end of file diff --git a/types/testSetup.StreamingMockCometSubscriptionOptions.html b/types/testSetup.StreamingMockCometSubscriptionOptions.html index c30f25205..7d8ba4baa 100644 --- a/types/testSetup.StreamingMockCometSubscriptionOptions.html +++ b/types/testSetup.StreamingMockCometSubscriptionOptions.html @@ -4,4 +4,4 @@
  • subscriptionCall: StreamingMockSubscriptionCall

    What is the subscription outcome a successful callback or an error?.

  • Optional subscriptionErrbackError?: SfError

    If it's an error that states what that error should be.

  • url: string

    Target URL.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/util_structuredWriter.StructuredWriter.html b/types/util_structuredWriter.StructuredWriter.html index a99ca9e1b..e2a0069e0 100644 --- a/types/util_structuredWriter.StructuredWriter.html +++ b/types/util_structuredWriter.StructuredWriter.html @@ -1 +1 @@ -StructuredWriter | @salesforce/core
    StructuredWriter: {
        get buffer(): Buffer;
        addToStore(contents, path): Promise<void>;
        finalize(): Promise<void>;
        getDestinationPath(): undefined | string;
    }

    Type declaration

    \ No newline at end of file +StructuredWriter | @salesforce/core
    StructuredWriter: {
        get buffer(): Buffer;
        addToStore(contents, path): Promise<void>;
        finalize(): Promise<void>;
        getDestinationPath(): undefined | string;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/webOAuthServer.WebOAuthServer.Options.html b/types/webOAuthServer.WebOAuthServer.Options.html index 430346ac2..ef5de991a 100644 --- a/types/webOAuthServer.WebOAuthServer.Options.html +++ b/types/webOAuthServer.WebOAuthServer.Options.html @@ -1 +1 @@ -Options | @salesforce/core
    Options: {
        oauthConfig: JwtOAuth2Config;
    }

    Type declaration

    \ No newline at end of file +Options | @salesforce/core
    Options: {
        oauthConfig: JwtOAuth2Config;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/webOAuthServer.WebOAuthServer.Request.html b/types/webOAuthServer.WebOAuthServer.Request.html index e1392d55e..9ac3fcef1 100644 --- a/types/webOAuthServer.WebOAuthServer.Request.html +++ b/types/webOAuthServer.WebOAuthServer.Request.html @@ -1 +1 @@ -Request | @salesforce/core
    Request: http.IncomingMessage & {
        query: {
            code: string;
            error?: string;
            error_description?: string;
            state: string;
        };
    }

    Type declaration

    • query: {
          code: string;
          error?: string;
          error_description?: string;
          state: string;
      }
      • code: string
      • Optional error?: string
      • Optional error_description?: string
      • state: string
    \ No newline at end of file +Request | @salesforce/core
    Request: http.IncomingMessage & {
        query: {
            code: string;
            error?: string;
            error_description?: string;
            state: string;
        };
    }

    Type declaration

    • query: {
          code: string;
          error?: string;
          error_description?: string;
          state: string;
      }
      • code: string
      • Optional error?: string
      • Optional error_description?: string
      • state: string
    \ No newline at end of file diff --git a/variables/config_config.SFDX_ALLOWED_PROPERTIES.html b/variables/config_config.SFDX_ALLOWED_PROPERTIES.html index 3b1a71937..155ef0f25 100644 --- a/variables/config_config.SFDX_ALLOWED_PROPERTIES.html +++ b/variables/config_config.SFDX_ALLOWED_PROPERTIES.html @@ -1 +1 @@ -SFDX_ALLOWED_PROPERTIES | @salesforce/core

    Variable SFDX_ALLOWED_PROPERTIESConst

    SFDX_ALLOWED_PROPERTIES: ({
        deprecated: boolean;
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: SfdxPropertyKeys;
        newKey: OrgConfigProperties;
    } | {
        deprecated: boolean;
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input?: undefined;
        key: SfdxPropertyKeys;
        newKey: OrgConfigProperties;
    } | {
        deprecated: boolean;
        description: string;
        encrypted: boolean;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: SfdxPropertyKeys;
        newKey: OrgConfigProperties;
    } | {
        deprecated: boolean;
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: SfdxPropertyKeys;
        newKey: DISABLE_TELEMETRY;
    } | {
        deprecated: boolean;
        description: string;
        encrypted?: undefined;
        hidden: boolean;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: SfdxPropertyKeys;
        newKey: string;
    })[] = ...
    \ No newline at end of file +SFDX_ALLOWED_PROPERTIES | @salesforce/core

    Variable SFDX_ALLOWED_PROPERTIESConst

    SFDX_ALLOWED_PROPERTIES: ({
        deprecated: boolean;
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: SfdxPropertyKeys;
        newKey: OrgConfigProperties;
    } | {
        deprecated: boolean;
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input?: undefined;
        key: SfdxPropertyKeys;
        newKey: OrgConfigProperties;
    } | {
        deprecated: boolean;
        description: string;
        encrypted: boolean;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: SfdxPropertyKeys;
        newKey: OrgConfigProperties;
    } | {
        deprecated: boolean;
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: SfdxPropertyKeys;
        newKey: DISABLE_TELEMETRY;
    } | {
        deprecated: boolean;
        description: string;
        encrypted?: undefined;
        hidden: boolean;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: SfdxPropertyKeys;
        newKey: string;
    })[] = ...
    \ No newline at end of file diff --git a/variables/config_config.SF_ALLOWED_PROPERTIES.html b/variables/config_config.SF_ALLOWED_PROPERTIES.html index b0f0c2e47..56feebe77 100644 --- a/variables/config_config.SF_ALLOWED_PROPERTIES.html +++ b/variables/config_config.SF_ALLOWED_PROPERTIES.html @@ -1 +1 @@ -SF_ALLOWED_PROPERTIES | @salesforce/core

    Variable SF_ALLOWED_PROPERTIESConst

    SF_ALLOWED_PROPERTIES: {
        description: string;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: DISABLE_TELEMETRY;
    }[] = ...

    Type declaration

    • description: string
    • input: {
          failedMessage: string;
          validator: ((value) => boolean);
      }
      • failedMessage: string
      • validator: ((value) => boolean)
          • (value): boolean
          • Parameters

            • value: AnyJson

            Returns boolean

    • key: DISABLE_TELEMETRY
    \ No newline at end of file +SF_ALLOWED_PROPERTIES | @salesforce/core

    Variable SF_ALLOWED_PROPERTIESConst

    SF_ALLOWED_PROPERTIES: {
        description: string;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: DISABLE_TELEMETRY;
    }[] = ...

    Type declaration

    • description: string
    • input: {
          failedMessage: string;
          validator: ((value) => boolean);
      }
      • failedMessage: string
      • validator: ((value) => boolean)
          • (value): boolean
          • Parameters

            • value: AnyJson

            Returns boolean

    • key: DISABLE_TELEMETRY
    \ No newline at end of file diff --git a/variables/config_config.SfProperty.html b/variables/config_config.SfProperty.html index 2795c64c5..411df7636 100644 --- a/variables/config_config.SfProperty.html +++ b/variables/config_config.SfProperty.html @@ -1 +1 @@ -SfProperty | @salesforce/core
    SfProperty: {
        [index: string]: ConfigPropertyMeta;
    } = {}

    Type declaration

    \ No newline at end of file +SfProperty | @salesforce/core
    SfProperty: {
        [index: string]: ConfigPropertyMeta;
    } = {}

    Type declaration

    \ No newline at end of file diff --git a/variables/config_envVars.SUPPORTED_ENV_VARS.html b/variables/config_envVars.SUPPORTED_ENV_VARS.html index 01986f372..65d6557f1 100644 --- a/variables/config_envVars.SUPPORTED_ENV_VARS.html +++ b/variables/config_envVars.SUPPORTED_ENV_VARS.html @@ -1 +1 @@ -SUPPORTED_ENV_VARS | @salesforce/core

    Variable SUPPORTED_ENV_VARSConst

    SUPPORTED_ENV_VARS: EnvType = ...
    \ No newline at end of file +SUPPORTED_ENV_VARS | @salesforce/core

    Variable SUPPORTED_ENV_VARSConst

    SUPPORTED_ENV_VARS: EnvType = ...
    \ No newline at end of file diff --git a/variables/config_envVars.envVars-1.html b/variables/config_envVars.envVars-1.html index b66abe0b8..3d4bb4d39 100644 --- a/variables/config_envVars.envVars-1.html +++ b/variables/config_envVars.envVars-1.html @@ -1 +1 @@ -envVars | @salesforce/core
    envVars: EnvVars = ...
    \ No newline at end of file +envVars | @salesforce/core
    envVars: EnvVars = ...
    \ No newline at end of file diff --git a/variables/config_lwwMap.SYMBOL_FOR_DELETED.html b/variables/config_lwwMap.SYMBOL_FOR_DELETED.html index 82124790c..c48a2d85a 100644 --- a/variables/config_lwwMap.SYMBOL_FOR_DELETED.html +++ b/variables/config_lwwMap.SYMBOL_FOR_DELETED.html @@ -1 +1 @@ -SYMBOL_FOR_DELETED | @salesforce/core

    Variable SYMBOL_FOR_DELETEDConst

    SYMBOL_FOR_DELETED: "UNIQUE_IDENTIFIER_FOR_DELETED" = ...
    \ No newline at end of file +SYMBOL_FOR_DELETED | @salesforce/core

    Variable SYMBOL_FOR_DELETEDConst

    SYMBOL_FOR_DELETED: "UNIQUE_IDENTIFIER_FOR_DELETED" = ...
    \ No newline at end of file diff --git a/variables/logger_filters.HIDDEN.html b/variables/logger_filters.HIDDEN.html index 272522973..77f3c7492 100644 --- a/variables/logger_filters.HIDDEN.html +++ b/variables/logger_filters.HIDDEN.html @@ -1 +1 @@ -HIDDEN | @salesforce/core
    HIDDEN: "HIDDEN" = 'HIDDEN'
    \ No newline at end of file +HIDDEN | @salesforce/core
    HIDDEN: "HIDDEN" = 'HIDDEN'
    \ No newline at end of file diff --git a/variables/org_authInfo.DEFAULT_CONNECTED_APP_INFO.html b/variables/org_authInfo.DEFAULT_CONNECTED_APP_INFO.html index 7260e88ec..ee3a0cc6e 100644 --- a/variables/org_authInfo.DEFAULT_CONNECTED_APP_INFO.html +++ b/variables/org_authInfo.DEFAULT_CONNECTED_APP_INFO.html @@ -1 +1 @@ -DEFAULT_CONNECTED_APP_INFO | @salesforce/core

    Variable DEFAULT_CONNECTED_APP_INFOConst

    DEFAULT_CONNECTED_APP_INFO: {
        clientId: string;
        clientSecret: string;
    } = ...

    Type declaration

    • clientId: string
    • clientSecret: string
    \ No newline at end of file +DEFAULT_CONNECTED_APP_INFO | @salesforce/core

    Variable DEFAULT_CONNECTED_APP_INFOConst

    DEFAULT_CONNECTED_APP_INFO: {
        clientId: string;
        clientSecret: string;
    } = ...

    Type declaration

    • clientId: string
    • clientSecret: string
    \ No newline at end of file diff --git a/variables/org_connection.DNS_ERROR_NAME.html b/variables/org_connection.DNS_ERROR_NAME.html index 02b7b8b1f..5c5221897 100644 --- a/variables/org_connection.DNS_ERROR_NAME.html +++ b/variables/org_connection.DNS_ERROR_NAME.html @@ -1 +1 @@ -DNS_ERROR_NAME | @salesforce/core
    DNS_ERROR_NAME: "DomainNotFoundError" = 'DomainNotFoundError'
    \ No newline at end of file +DNS_ERROR_NAME | @salesforce/core
    DNS_ERROR_NAME: "DomainNotFoundError" = 'DomainNotFoundError'
    \ No newline at end of file diff --git a/variables/org_connection.SFDX_HTTP_HEADERS.html b/variables/org_connection.SFDX_HTTP_HEADERS.html index 085599ffa..21996fae4 100644 --- a/variables/org_connection.SFDX_HTTP_HEADERS.html +++ b/variables/org_connection.SFDX_HTTP_HEADERS.html @@ -1 +1 @@ -SFDX_HTTP_HEADERS | @salesforce/core

    Variable SFDX_HTTP_HEADERSConst

    SFDX_HTTP_HEADERS: {
        content-type: string;
        user-agent: string;
    } = ...

    Type declaration

    • content-type: string
    • user-agent: string
    \ No newline at end of file +SFDX_HTTP_HEADERS | @salesforce/core

    Variable SFDX_HTTP_HEADERSConst

    SFDX_HTTP_HEADERS: {
        content-type: string;
        user-agent: string;
    } = ...

    Type declaration

    • content-type: string
    • user-agent: string
    \ No newline at end of file diff --git a/variables/org_connection.SingleRecordQueryErrors.html b/variables/org_connection.SingleRecordQueryErrors.html index 582b5291c..93ca77260 100644 --- a/variables/org_connection.SingleRecordQueryErrors.html +++ b/variables/org_connection.SingleRecordQueryErrors.html @@ -1 +1 @@ -SingleRecordQueryErrors | @salesforce/core

    Variable SingleRecordQueryErrorsConst

    SingleRecordQueryErrors: {
        MultipleRecords: string;
        NoRecords: string;
    } = ...

    Type declaration

    • MultipleRecords: string
    • NoRecords: string
    \ No newline at end of file +SingleRecordQueryErrors | @salesforce/core

    Variable SingleRecordQueryErrorsConst

    SingleRecordQueryErrors: {
        MultipleRecords: string;
        NoRecords: string;
    } = ...

    Type declaration

    • MultipleRecords: string
    • NoRecords: string
    \ No newline at end of file diff --git a/variables/org_orgConfigProperties.ORG_CONFIG_ALLOWED_PROPERTIES.html b/variables/org_orgConfigProperties.ORG_CONFIG_ALLOWED_PROPERTIES.html index cc4b1fc57..55dbce8de 100644 --- a/variables/org_orgConfigProperties.ORG_CONFIG_ALLOWED_PROPERTIES.html +++ b/variables/org_orgConfigProperties.ORG_CONFIG_ALLOWED_PROPERTIES.html @@ -1 +1 @@ -ORG_CONFIG_ALLOWED_PROPERTIES | @salesforce/core
    ORG_CONFIG_ALLOWED_PROPERTIES: ({
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input?: undefined;
        key: OrgConfigProperties;
    } | {
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: OrgConfigProperties;
    } | {
        description: string;
        encrypted?: undefined;
        hidden: boolean;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: OrgConfigProperties;
    } | {
        description: string;
        encrypted: boolean;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: OrgConfigProperties;
    })[] = ...
    \ No newline at end of file +ORG_CONFIG_ALLOWED_PROPERTIES | @salesforce/core
    ORG_CONFIG_ALLOWED_PROPERTIES: ({
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input?: undefined;
        key: OrgConfigProperties;
    } | {
        description: string;
        encrypted?: undefined;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: OrgConfigProperties;
    } | {
        description: string;
        encrypted?: undefined;
        hidden: boolean;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: OrgConfigProperties;
    } | {
        description: string;
        encrypted: boolean;
        hidden?: undefined;
        input: {
            failedMessage: string;
            validator: ((value) => boolean);
        };
        key: OrgConfigProperties;
    })[] = ...
    \ No newline at end of file diff --git a/variables/org_scratchOrgCreate.DEFAULT_STREAM_TIMEOUT_MINUTES.html b/variables/org_scratchOrgCreate.DEFAULT_STREAM_TIMEOUT_MINUTES.html index d31edfc6f..ff4bffd2e 100644 --- a/variables/org_scratchOrgCreate.DEFAULT_STREAM_TIMEOUT_MINUTES.html +++ b/variables/org_scratchOrgCreate.DEFAULT_STREAM_TIMEOUT_MINUTES.html @@ -1 +1 @@ -DEFAULT_STREAM_TIMEOUT_MINUTES | @salesforce/core

    Variable DEFAULT_STREAM_TIMEOUT_MINUTESConst

    DEFAULT_STREAM_TIMEOUT_MINUTES: 6 = 6
    \ No newline at end of file +DEFAULT_STREAM_TIMEOUT_MINUTES | @salesforce/core

    Variable DEFAULT_STREAM_TIMEOUT_MINUTESConst

    DEFAULT_STREAM_TIMEOUT_MINUTES: 6 = 6
    \ No newline at end of file diff --git a/variables/org_scratchOrgLifecycleEvents.scratchOrgLifecycleEventName.html b/variables/org_scratchOrgLifecycleEvents.scratchOrgLifecycleEventName.html index 19eada40c..6a1236ef9 100644 --- a/variables/org_scratchOrgLifecycleEvents.scratchOrgLifecycleEventName.html +++ b/variables/org_scratchOrgLifecycleEvents.scratchOrgLifecycleEventName.html @@ -1 +1 @@ -scratchOrgLifecycleEventName | @salesforce/core
    scratchOrgLifecycleEventName: "scratchOrgLifecycleEvent" = 'scratchOrgLifecycleEvent'
    \ No newline at end of file +scratchOrgLifecycleEventName | @salesforce/core
    scratchOrgLifecycleEventName: "scratchOrgLifecycleEvent" = 'scratchOrgLifecycleEvent'
    \ No newline at end of file diff --git a/variables/org_scratchOrgLifecycleEvents.scratchOrgLifecycleStages.html b/variables/org_scratchOrgLifecycleEvents.scratchOrgLifecycleStages.html index 63b0e4ef1..4c52a3f03 100644 --- a/variables/org_scratchOrgLifecycleEvents.scratchOrgLifecycleStages.html +++ b/variables/org_scratchOrgLifecycleEvents.scratchOrgLifecycleStages.html @@ -1 +1 @@ -scratchOrgLifecycleStages | @salesforce/core
    scratchOrgLifecycleStages: readonly ["prepare request", "send request", "wait for org", "available", "authenticate", "deploy settings", "done"] = ...
    \ No newline at end of file +scratchOrgLifecycleStages | @salesforce/core
    scratchOrgLifecycleStages: readonly ["prepare request", "send request", "wait for org", "available", "authenticate", "deploy settings", "done"] = ...
    \ No newline at end of file diff --git a/variables/org_user.REQUIRED_FIELDS.html b/variables/org_user.REQUIRED_FIELDS.html index 01ca945eb..52b22da9d 100644 --- a/variables/org_user.REQUIRED_FIELDS.html +++ b/variables/org_user.REQUIRED_FIELDS.html @@ -1,2 +1,2 @@ REQUIRED_FIELDS | @salesforce/core

    Variable REQUIRED_FIELDSConst

    REQUIRED_FIELDS: {
        alias: string;
        email: string;
        emailEncodingKey: string;
        id: string;
        languageLocaleKey: string;
        lastName: string;
        localeSidKey: string;
        profileId: string;
        timeZoneSidKey: string;
        username: string;
    } = ...

    A Map of Required Salesforce User fields.

    -

    Type declaration

    • alias: string
    • email: string
    • emailEncodingKey: string
    • id: string
    • languageLocaleKey: string
    • lastName: string
    • localeSidKey: string
    • profileId: string
    • timeZoneSidKey: string
    • username: string
    \ No newline at end of file +

    Type declaration

    • alias: string
    • email: string
    • emailEncodingKey: string
    • id: string
    • languageLocaleKey: string
    • lastName: string
    • localeSidKey: string
    • profileId: string
    • timeZoneSidKey: string
    • username: string
    \ No newline at end of file diff --git a/variables/stateAggregator_accessors_aliasAccessor.DEFAULT_GROUP.html b/variables/stateAggregator_accessors_aliasAccessor.DEFAULT_GROUP.html index 9f9fabe32..8fec43a32 100644 --- a/variables/stateAggregator_accessors_aliasAccessor.DEFAULT_GROUP.html +++ b/variables/stateAggregator_accessors_aliasAccessor.DEFAULT_GROUP.html @@ -1 +1 @@ -DEFAULT_GROUP | @salesforce/core
    \ No newline at end of file +DEFAULT_GROUP | @salesforce/core
    \ No newline at end of file diff --git a/variables/stateAggregator_accessors_aliasAccessor.FILENAME.html b/variables/stateAggregator_accessors_aliasAccessor.FILENAME.html index b965d38db..404ccb8e7 100644 --- a/variables/stateAggregator_accessors_aliasAccessor.FILENAME.html +++ b/variables/stateAggregator_accessors_aliasAccessor.FILENAME.html @@ -1 +1 @@ -FILENAME | @salesforce/core
    \ No newline at end of file +FILENAME | @salesforce/core
    \ No newline at end of file diff --git a/variables/testSetup.unexpectedResult.html b/variables/testSetup.unexpectedResult.html index e9f220724..041fb86dd 100644 --- a/variables/testSetup.unexpectedResult.html +++ b/variables/testSetup.unexpectedResult.html @@ -1,3 +1,3 @@ unexpectedResult | @salesforce/core

    Variable unexpectedResultConst

    unexpectedResult: SfError<AnyJson> = ...

    A pre-canned error for try/catch testing.

    See shouldThrow

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/util_internal.traverse.html b/variables/util_internal.traverse.html index 557f7f2e8..13b49a00f 100644 --- a/variables/util_internal.traverse.html +++ b/variables/util_internal.traverse.html @@ -10,4 +10,4 @@ not found.

      • (dir, file): Optional<string>
      • Parameters

        • dir: string

          The directory path in which to start the upward search.

        • file: string

          The file name to look for.

          -

        Returns Optional<string>

    \ No newline at end of file +

    Returns Optional<string>

    \ No newline at end of file diff --git a/variables/util_lockRetryOptions.lockOptions.html b/variables/util_lockRetryOptions.lockOptions.html index 6ed97efa6..2402b1bdc 100644 --- a/variables/util_lockRetryOptions.lockOptions.html +++ b/variables/util_lockRetryOptions.lockOptions.html @@ -1 +1 @@ -lockOptions | @salesforce/core
    lockOptions: {
        stale: number;
    } = ...

    Type declaration

    • stale: number
    \ No newline at end of file +lockOptions | @salesforce/core
    lockOptions: {
        stale: number;
    } = ...

    Type declaration

    • stale: number
    \ No newline at end of file diff --git a/variables/util_lockRetryOptions.lockRetryOptions.html b/variables/util_lockRetryOptions.lockRetryOptions.html index 0570f52a9..d108d1687 100644 --- a/variables/util_lockRetryOptions.lockRetryOptions.html +++ b/variables/util_lockRetryOptions.lockRetryOptions.html @@ -1 +1 @@ -lockRetryOptions | @salesforce/core
    lockRetryOptions: {
        retries: {
            factor: number;
            maxTimeout: number;
            retries: number;
        };
        stale: number;
    } = ...

    Type declaration

    • retries: {
          factor: number;
          maxTimeout: number;
          retries: number;
      }
      • factor: number
      • maxTimeout: number
      • retries: number
    • stale: number
    \ No newline at end of file +lockRetryOptions | @salesforce/core
    lockRetryOptions: {
        retries: {
            factor: number;
            maxTimeout: number;
            retries: number;
        };
        stale: number;
    } = ...

    Type declaration

    • retries: {
          factor: number;
          maxTimeout: number;
          retries: number;
      }
      • factor: number
      • maxTimeout: number
      • retries: number
    • stale: number
    \ No newline at end of file diff --git a/variables/util_sfdc.accessTokenRegex.html b/variables/util_sfdc.accessTokenRegex.html index 96237329c..ad3dd4f0b 100644 --- a/variables/util_sfdc.accessTokenRegex.html +++ b/variables/util_sfdc.accessTokenRegex.html @@ -1 +1 @@ -accessTokenRegex | @salesforce/core

    Variable accessTokenRegexConst

    accessTokenRegex: RegExp = ...
    \ No newline at end of file +accessTokenRegex | @salesforce/core

    Variable accessTokenRegexConst

    accessTokenRegex: RegExp = ...
    \ No newline at end of file diff --git a/variables/util_sfdc.sfdxAuthUrlRegex.html b/variables/util_sfdc.sfdxAuthUrlRegex.html index 2be509de6..d8d5a5797 100644 --- a/variables/util_sfdc.sfdxAuthUrlRegex.html +++ b/variables/util_sfdc.sfdxAuthUrlRegex.html @@ -1 +1 @@ -sfdxAuthUrlRegex | @salesforce/core

    Variable sfdxAuthUrlRegexConst

    sfdxAuthUrlRegex: RegExp = ...
    \ No newline at end of file +sfdxAuthUrlRegex | @salesforce/core

    Variable sfdxAuthUrlRegexConst

    sfdxAuthUrlRegex: RegExp = ...
    \ No newline at end of file