output
    Preparing search index...

    Interface WorkflowErrorHookPayload

    Payload passed to the onWorkflowError handler when a workflow run fails.

    interface WorkflowErrorHookPayload {
        duration: number;
        error: Error;
        id: string;
        name: string;
    }
    Index

    Properties

    Properties

    duration: number

    Elapsed time before failure in milliseconds.

    error: Error

    The error thrown.

    id: string

    Identifier of the workflow run.

    name: string

    Name of the workflow.