Type alias TMintClientOptions

TMintClientOptions: {
    logTransport?: ILogTransport;
    otpProviders: TOTPProviders;
    password: string;
    sessionStore?: ISessionStore;
    username: string;
}

Mint client options

Type declaration

  • Optional logTransport?: ILogTransport

    A custom log transport

  • otpProviders: TOTPProviders

    A list of providers that will return a one-time-password when requested during the initial sign-in process. Read more here about the different OTP token types.

  • password: string

    The password used to sign into your Intuit account

  • Optional sessionStore?: ISessionStore

    A class implementing ISessionStore. Effectively a key-value store to persist and retrieve various information related to the current authentication session (e.g. authorization and refresh tokens). Defaults to EncryptedFileSessionStore using the above username & password as credentials.

  • username: string

    The username or email used to sign into your Intuit account

Generated using TypeDoc