@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?: JsonValue;
        createdBySubjectId: string;
        workflowKey: string;
        providerName: string;
        definitionId: string;
        runAs?: SubjectContext;
        input?: JsonObject;
        definitionGeneration: bigint;
        currentStepId: string;
        steps: WorkflowStepExecution[];
    }
    Index

    Properties

    id: string
    status: number
    createdAt?: Date
    startedAt?: Date
    completedAt?: Date
    statusMessage: string
    output?: JsonValue
    createdBySubjectId: string
    workflowKey: string
    providerName: string
    definitionId: string
    input?: JsonObject
    definitionGeneration: bigint
    currentStepId: string