providerplaneai
    Preparing search index...

    Builder-time options for an individual workflow node.

    interface WorkflowNodeOptions {
        condition?: (state: WorkflowState) => boolean;
        dependsOn?: string[];
        retry?: WorkflowRetryPolicy;
        timeoutMs?: number;
    }
    Index

    Properties

    condition?: (state: WorkflowState) => boolean
    dependsOn?: string[]
    timeoutMs?: number