@makehq/sdk
    Preparing search index...

    Type Alias ExecutionDetail

    Detailed result of a scenario execution. Includes high-level status, optional outputs, and error metadata.

    type ExecutionDetail = {
        error?: {
            causeModule?: { appName: string; name: string };
            message: string;
            name: string;
        };
        outputs?: Record<string, JSONValue>;
        status: "RUNNING" | "SUCCESS" | "WARNING" | "ERROR";
    }
    Index

    Properties

    error?: {
        causeModule?: { appName: string; name: string };
        message: string;
        name: string;
    }

    Error information when execution resulted in WARNING or ERROR

    Type declaration

    • OptionalcauseModule?: { appName: string; name: string }

      Module that caused the error

      • appName: string

        Name of the app

      • name: string

        Name of the module

    • message: string

      Description of the error

    • name: string

      Name of the error

    outputs?: Record<string, JSONValue>

    Outputs of the scenario execution (shape depends on scenario configuration)

    status: "RUNNING" | "SUCCESS" | "WARNING" | "ERROR"

    Status of the scenario execution: RUNNING, SUCCESS, WARNING, or ERROR