@valon-technologies/gestalt
    Preparing search index...

    Interface WorkflowRun

    interface WorkflowRun {
        id: string;
        status: number;
        target?: BoundWorkflowTarget;
        trigger?: WorkflowRunTrigger;
        createdAt?: Date;
        startedAt?: Date;
        completedAt?: Date;
        statusMessage: string;
        output?: JsonInput;
        workflowKey: string;
        provider: string;
        definitionId: string;
        runAs: string;
        input?: object;
        definitionGeneration: bigint;
        currentStepId: string;
        steps: WorkflowStepExecution[];
    }
    Index

    Properties

    id: string
    status: number
    createdAt?: Date
    startedAt?: Date
    completedAt?: Date
    statusMessage: string
    output?: JsonInput
    workflowKey: string
    provider: string
    definitionId: string
    runAs: string
    input?: object
    definitionGeneration: bigint
    currentStepId: string