@archastro/sdk
    Preparing search index...

    Interface WorkflowJournal

    Summary of the durable workflow execution journal associated with a run.

    interface WorkflowJournal {
        completed_at?: string;
        created_at?: string;
        current_sequence: number;
        id: string;
        started_at?: string;
        status: string;
        updated_at?: string;
    }
    Index

    Properties

    completed_at?: string

    When durable workflow execution reached a terminal state. null while it is active.

    created_at?: string

    When the journal was created.

    current_sequence: number

    Highest workflow record sequence durably committed to this journal.

    id: string

    Journal execution ID (wde_...).

    started_at?: string

    When durable workflow execution started.

    status: string

    Current durable execution status: pending, running, waiting, completed, failed, or cancelled.

    updated_at?: string

    When the journal was last updated.