@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.
@@ -1309,18 +1309,6 @@ function convertIcebergS3EngineConfig(config) {
1309
1309
  compression: config.compression
1310
1310
  };
1311
1311
  }
1312
- function convertKafkaEngineConfig(config) {
1313
- if (!("engine" in config) || config.engine !== "Kafka" /* Kafka */) {
1314
- return void 0;
1315
- }
1316
- return {
1317
- engine: "Kafka",
1318
- brokerList: config.brokerList,
1319
- topicList: config.topicList,
1320
- groupName: config.groupName,
1321
- format: config.format
1322
- };
1323
- }
1324
1312
  function convertTableConfigToEngineConfig(config) {
1325
1313
  const engine = extractEngineValue(config);
1326
1314
  const basicConfig = convertBasicEngineConfig(engine, config);
@@ -1346,9 +1334,6 @@ function convertTableConfigToEngineConfig(config) {
1346
1334
  if (engine === "IcebergS3" /* IcebergS3 */) {
1347
1335
  return convertIcebergS3EngineConfig(config);
1348
1336
  }
1349
- if (engine === "Kafka" /* Kafka */) {
1350
- return convertKafkaEngineConfig(config);
1351
- }
1352
1337
  return void 0;
1353
1338
  }
1354
1339
  var toInfraMap = (registry) => {