nestjs-temporal-core
    Preparing search index...

    Interface ActivityModuleOptions

    Configuration options for activity module initialization. Extends LoggerConfig with activity-specific settings.

    interface ActivityModuleOptions {
        activityClasses?: Type<unknown>[];
        enableLogger?: boolean;
        global?: boolean;
        logLevel?: LogLevel;
        muteErrors?: boolean;
        timeout?: string | number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    activityClasses?: Type<unknown>[]
    enableLogger?: boolean
    global?: boolean
    logLevel?: LogLevel
    muteErrors?: boolean

    When true, suppresses error-level log output and prevents service methods from throwing on operational failures (they return structured error results instead).

    false
    
    timeout?: string | number