@qualithm/kafka-client - v0.1.6
    Preparing search index...

    Type Alias OffsetCommitPartitionRequest

    OffsetCommit per-partition request data.

    type OffsetCommitPartitionRequest = {
        committedLeaderEpoch?: number;
        committedMetadata: string | null;
        committedOffset: bigint;
        partitionIndex: number;
        taggedFields?: readonly TaggedField[];
    }
    Index

    Properties

    committedLeaderEpoch?: number

    The leader epoch of the last consumed record (v6+). -1 if unknown.

    committedMetadata: string | null

    Metadata string (nullable).

    committedOffset: bigint

    The committed offset.

    partitionIndex: number

    The partition index.

    taggedFields?: readonly TaggedField[]

    Tagged fields (v8+).