@deskcreate/agentcraft
    Preparing search index...

    Interface WorkflowRunArtifact

    Persisted ArtifactStore record used for workflow resumability.

    interface WorkflowRunArtifact {
        completedAt?: string;
        createdAt: string;
        id: string;
        input: unknown;
        startedAt: string;
        status: "completed" | "failed" | "running" | "partial";
        steps: WorkflowStepResult[];
        type: "WorkflowRun";
        workflowId: string;
    }
    Index

    Properties

    completedAt?: string
    createdAt: string
    id: string
    input: unknown
    startedAt: string
    status: "completed" | "failed" | "running" | "partial"
    type: "WorkflowRun"
    workflowId: string