scordi-extension 1.15.14 → 1.15.15
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.
|
@@ -24,6 +24,7 @@ export async function handlerTransformData(data) {
|
|
|
24
24
|
try {
|
|
25
25
|
result = await compiledExpression.evaluate(input);
|
|
26
26
|
} catch (error) {
|
|
27
|
+
console.error("JSONata evaluation failed:", error);
|
|
27
28
|
throw new Error(
|
|
28
29
|
`JSONata evaluation failed: ${error instanceof Error ? error.message : "Unknown error"}`
|
|
29
30
|
);
|
|
@@ -795,7 +795,7 @@ const socketHost = `${"localhost" || importMetaUrl.hostname}:${hmrPort || import
|
|
|
795
795
|
const directSocketHost = "localhost:5173/";
|
|
796
796
|
const base = "/" || "/";
|
|
797
797
|
const hmrTimeout = 30000;
|
|
798
|
-
const wsToken = "
|
|
798
|
+
const wsToken = "jKkvbqPdvbPy";
|
|
799
799
|
const transport = normalizeModuleRunnerTransport(
|
|
800
800
|
(() => {
|
|
801
801
|
let wsTransport = createWebSocketModuleRunnerTransport({
|