@514labs/moose-lib 0.6.258-ci-7-gf0ea82a7 → 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.
@@ -1338,18 +1338,6 @@ function convertIcebergS3EngineConfig(config) {
1338
1338
  compression: config.compression
1339
1339
  };
1340
1340
  }
1341
- function convertKafkaEngineConfig(config) {
1342
- if (!("engine" in config) || config.engine !== "Kafka" /* Kafka */) {
1343
- return void 0;
1344
- }
1345
- return {
1346
- engine: "Kafka",
1347
- brokerList: config.brokerList,
1348
- topicList: config.topicList,
1349
- groupName: config.groupName,
1350
- format: config.format
1351
- };
1352
- }
1353
1341
  function convertTableConfigToEngineConfig(config) {
1354
1342
  const engine = extractEngineValue(config);
1355
1343
  const basicConfig = convertBasicEngineConfig(engine, config);
@@ -1375,9 +1363,6 @@ function convertTableConfigToEngineConfig(config) {
1375
1363
  if (engine === "IcebergS3" /* IcebergS3 */) {
1376
1364
  return convertIcebergS3EngineConfig(config);
1377
1365
  }
1378
- if (engine === "Kafka" /* Kafka */) {
1379
- return convertKafkaEngineConfig(config);
1380
- }
1381
1366
  return void 0;
1382
1367
  }
1383
1368
  var toInfraMap = (registry) => {