@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.
- package/dist/{browserCompatible-CC6Jamxn.d.ts → browserCompatible-B_aEflr_.d.ts} +1 -1
- package/dist/{browserCompatible-GsBQtLKo.d.mts → browserCompatible-DnYA4Zgi.d.mts} +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-B1HsstjQ.d.mts → index-rECDLgTX.d.mts} +1 -34
- package/dist/{index-B1HsstjQ.d.ts → index-rECDLgTX.d.ts} +1 -34
- 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.mjs
CHANGED
|
@@ -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) => {
|