Member Junction
    Preparing search index...

    Type Alias TaskActionRunParams

    Everything running one action for one task node needs.

    type TaskActionRunParams = {
        ActionID: string;
        ContextUser: UserInfo;
        DependencyOutputs: Map<string, unknown>;
        InputPayload: unknown;
        OnProgress?: TaskRunProgressCallback;
        Provider: IMetadataProvider;
        TaskID: string;
    }
    Index

    Properties

    ActionID: string
    ContextUser: UserInfo
    DependencyOutputs: Map<string, unknown>

    Outputs of this node's satisfied prerequisites, in the same shape agent nodes receive.

    InputPayload: unknown

    Structured input from Task.InputPayload — for durable entity-action dispatch, the redacted params.

    Optional progress sink; the dispatcher turns calls into rate-limited NodeProgress frames.

    TaskID: string