Member Junction
    Preparing search index...

    Type Alias TaskActionRunResult

    The outcome of one action node.

    type TaskActionRunResult = {
        ActionLogID?: string;
        ErrorMessage?: string;
        Output?: unknown;
        Success: boolean;
    }
    Index

    Properties

    ActionLogID?: string

    The MJ: Action Execution Logs row this run produced.

    Carried so the step can record it, which is what lets a workflow's action offer "view the execution log" the way an ordinary agent run step does. Optional because a runner that cannot produce one is limited, not broken.

    ErrorMessage?: string
    Output?: unknown
    Success: boolean