@514labs/moose-lib 0.6.249-ci-2-g7652377c → 0.6.249-ci-4-gd5cc8c9c

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.
@@ -1322,18 +1322,6 @@ function convertIcebergS3EngineConfig(config) {
1322
1322
  compression: config.compression
1323
1323
  };
1324
1324
  }
1325
- function convertKafkaEngineConfig(config) {
1326
- if (!("engine" in config) || config.engine !== "Kafka" /* Kafka */) {
1327
- return void 0;
1328
- }
1329
- return {
1330
- engine: "Kafka",
1331
- brokerList: config.brokerList,
1332
- topicList: config.topicList,
1333
- groupName: config.groupName,
1334
- format: config.format
1335
- };
1336
- }
1337
1325
  function convertTableConfigToEngineConfig(config) {
1338
1326
  const engine = extractEngineValue(config);
1339
1327
  const basicConfig = convertBasicEngineConfig(engine, config);
@@ -1359,9 +1347,6 @@ function convertTableConfigToEngineConfig(config) {
1359
1347
  if (engine === "IcebergS3" /* IcebergS3 */) {
1360
1348
  return convertIcebergS3EngineConfig(config);
1361
1349
  }
1362
- if (engine === "Kafka" /* Kafka */) {
1363
- return convertKafkaEngineConfig(config);
1364
- }
1365
1350
  return void 0;
1366
1351
  }
1367
1352
  var toInfraMap = (registry) => {