Interface ApillonConfig

interface ApillonConfig {
    key?: string;
    secret?: string;
    apiUrl?: string;
    logLevel?: LogLevel;
    debug?: boolean;
}

Properties

key?: string

Your API key, generated through the Apillon dashboard

Default

env.APILLON_API_KEY
secret?: string

Your API secret, generated through the Apillon dashboard

Default

env.APILLON_API_SECRET
apiUrl?: string

The API URL to use for executing the queries and actions.

Default

https://api.apillon.io
logLevel?: LogLevel

The level of logger output to use for the Apillon logger.

Default

ERROR
debug?: boolean

Used for CLI - indicates whether to output verbose logs

Default

false