Interface InfoErrorNotification

Error notification. Emitted for recoverable errors in background tasks.

interface InfoErrorNotification {
    backtest: boolean;
    error: object;
    id: string;
    message: string;
    type: "error.info";
}

Properties

backtest: boolean

Always false for error notifications (errors are from live context)

error: object

Serialized error object with stack trace and metadata

id: string

Unique notification identifier

message: string

Human-readable error message

type: "error.info"

Discriminator for type-safe union