@514labs/moose-lib 0.6.276-ci-8-gc5dc0ced → 0.6.276-ci-1-gfe86cd2c
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.js +57 -1
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs +62 -2
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/compilerPlugin.js.map +1 -1
- package/dist/compilerPlugin.mjs +5 -1
- package/dist/compilerPlugin.mjs.map +1 -1
- package/dist/dmv2/index.js +57 -1
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs +62 -2
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/index.d.mts +27 -2
- package/dist/index.d.ts +27 -2
- package/dist/index.js +63 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +65 -2
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +191 -75
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +197 -77
- package/dist/moose-runner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/compilerPlugin.mjs
CHANGED
|
@@ -97,7 +97,11 @@ var typiaJsonSchemas = (typeNode) => factory.createCallExpression(
|
|
|
97
97
|
|
|
98
98
|
// src/commons.ts
|
|
99
99
|
import { createClient } from "@clickhouse/client";
|
|
100
|
-
import {
|
|
100
|
+
import {
|
|
101
|
+
KafkaConsumer,
|
|
102
|
+
KafkaJS,
|
|
103
|
+
CODES
|
|
104
|
+
} from "@confluentinc/kafka-javascript";
|
|
101
105
|
var { Kafka } = KafkaJS;
|
|
102
106
|
function isTruthy(value) {
|
|
103
107
|
if (!value) return false;
|