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

    Type Alias DeleteTopicState

    A topic to delete (v6+ supports deletion by either name or ID).

    type DeleteTopicState = {
        name: string | null;
        taggedFields?: readonly TaggedField[];
        topicId?: Uint8Array;
    }
    Index

    Properties

    name: string | null

    Topic name. Null if deleting by ID only (v6+).

    taggedFields?: readonly TaggedField[]

    Tagged fields (v4+).

    topicId?: Uint8Array

    Topic ID (v6+, UUID as 16 bytes).