@514labs/moose-lib 0.6.249-ci-2-g7652377c → 0.6.249-ci-3-gc31139ef
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.
- package/dist/{browserCompatible-CYDIQRRZ.d.mts → browserCompatible-BTN82akc.d.mts} +1 -1
- package/dist/{browserCompatible-C_H_-QHB.d.ts → browserCompatible-CoxWbneN.d.ts} +1 -1
- package/dist/browserCompatible.d.mts +2 -2
- package/dist/browserCompatible.d.ts +2 -2
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/dmv2/index.d.mts +1 -1
- package/dist/dmv2/index.d.ts +1 -1
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/{index-xC52kbse.d.mts → index-CNlTyF6R.d.mts} +1 -101
- package/dist/{index-xC52kbse.d.ts → index-CNlTyF6R.d.ts} +1 -101
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -1
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +0 -15
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +0 -15
- package/dist/moose-runner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/moose-runner.js
CHANGED
|
@@ -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) => {
|