@514labs/moose-lib 0.6.258-ci-8-gf5dce856 → 0.6.258-ci-1-gaab9be32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1325,18 +1325,6 @@ function convertIcebergS3EngineConfig(config) {
1325
1325
  compression: config.compression
1326
1326
  };
1327
1327
  }
1328
- function convertKafkaEngineConfig(config) {
1329
- if (!("engine" in config) || config.engine !== "Kafka" /* Kafka */) {
1330
- return void 0;
1331
- }
1332
- return {
1333
- engine: "Kafka",
1334
- brokerList: config.brokerList,
1335
- topicList: config.topicList,
1336
- groupName: config.groupName,
1337
- format: config.format
1338
- };
1339
- }
1340
1328
  function convertTableConfigToEngineConfig(config) {
1341
1329
  const engine = extractEngineValue(config);
1342
1330
  const basicConfig = convertBasicEngineConfig(engine, config);
@@ -1362,9 +1350,6 @@ function convertTableConfigToEngineConfig(config) {
1362
1350
  if (engine === "IcebergS3" /* IcebergS3 */) {
1363
1351
  return convertIcebergS3EngineConfig(config);
1364
1352
  }
1365
- if (engine === "Kafka" /* Kafka */) {
1366
- return convertKafkaEngineConfig(config);
1367
- }
1368
1353
  return void 0;
1369
1354
  }
1370
1355
  var toInfraMap = (registry) => {