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

    Type Alias OffsetFetchRequest

    OffsetFetch request payload.

    For v0–v7, use groupId and topics. For v8+, use groups for batched multi-group fetch.

    type OffsetFetchRequest = {
        groupId: string;
        requireStable?: boolean;
        taggedFields?: readonly TaggedField[];
        topics: readonly OffsetFetchTopicRequest[] | null;
    }
    Index

    Properties

    groupId: string

    The consumer group ID (v0–v7).

    requireStable?: boolean

    Whether to require stable offsets (v7+).

    taggedFields?: readonly TaggedField[]

    Tagged fields (v6+).

    topics: readonly OffsetFetchTopicRequest[] | null

    Topics to fetch offsets for. Null fetches all (v7+).