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

    Type Alias GeneratedReadBatch

    Generated API types re-exported for convenience.

    These mirror the server REST resources and payloads.

    type GeneratedReadBatch = {
        records: SequencedRecord[];
        tail?: null | StreamPosition;
    }
    Index

    Properties

    Properties

    records: SequencedRecord[]

    Records that are durably sequenced on the stream, retrieved based on the requested criteria. This can only be empty in response to a unary read (i.e. not SSE), if the request cannot be satisfied without violating an explicit bound (count, bytes, or until).

    tail?: null | StreamPosition