@s2-dev/streamstore - v0.18.1
    Preparing search index...

    Type Alias SequencedRecord

    Record that is durably sequenced on a stream.

    type SequencedRecord = {
        body?: string;
        headers?: Header[];
        seq_num: U64;
        timestamp: U64;
    }
    Index

    Properties

    body?: string

    Body of the record.

    headers?: Header[]

    Series of name-value pairs for this record.

    seq_num: U64

    Sequence number assigned by the service.

    timestamp: U64

    Timestamp for this record.