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

    Interface WorkflowRun

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

    Properties

    id?: string
    createdAt?: Date
    startedAt?: Date
    completedAt?: Date
    statusMessage?: string
    output?: JsonInput
    createdBySubjectId?: string
    workflowKey?: string
    providerName?: string
    definitionId?: string
    runAs?: Subject
    input?: object
    definitionGeneration?: number | bigint
    currentStepId?: string
    steps?: readonly WorkflowStepExecution[]