UNPKG

@dtu-olp-2024/kafka-nocobase

Version:

A NocoBase plugin for Apache Kafka integration, supporting message publishing, topic management, and event-driven workflows. Built for the DTU GreenHope project.

11 lines (8 loc) 263 B
const requestV0 = require('../v0/request') /** * DeleteTopics Request (Version: 1) => [topics] timeout * topics => STRING * timeout => INT32 */ module.exports = ({ topics, timeout }) => Object.assign(requestV0({ topics, timeout }), { apiVersion: 1 })