@archastro/sdk
    Preparing search index...

    Interface WorkflowJournalEntry

    One ordered, replayable record from a durable workflow journal.

    interface WorkflowJournalEntry {
        command_id?: string;
        created_at?: string;
        id: string;
        node_id?: string;
        record: Record<string, unknown>;
        sequence: number;
        timer_id?: string;
        type: string;
    }
    Index

    Properties

    command_id?: string

    Durable command identifier associated with the record, when present.

    created_at?: string

    When this entry was durably committed.

    id: string

    Journal entry ID (wdr_...).

    node_id?: string

    Workflow node associated with the record. null for execution-level records.

    record: Record<string, unknown>

    Replayable workflow record body, including payload, context, environment, metadata, and timestamp.

    sequence: number

    Monotonically increasing sequence within the journal.

    timer_id?: string

    Durable timer identifier associated with the record, when present.

    type: string

    Workflow record type, such as node_started, node_completed, or node_failed.