@workflow/web 5.0.0-beta.51 → 5.0.0-beta.52

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.
@@ -48833,27 +48833,25 @@ function isNodeHttpEnabled(env2 = process.env) {
48833
48833
  async function reenqueueActiveRuns(runs, enqueue, label, namespace2) {
48834
48834
  const workflowQueuePrefix = getQueueTopicPrefix("workflow", resolveQueueNamespace(namespace2));
48835
48835
  let reenqueued = 0;
48836
- for (const status of ["pending", "running"]) {
48837
- let cursor;
48838
- let hasMore = true;
48839
- while (hasMore) {
48840
- const page = await runs.list({
48841
- status,
48842
- resolveData: "none",
48843
- pagination: { cursor }
48844
- });
48845
- for (const run2 of page.data) {
48846
- try {
48847
- const queueName = `${workflowQueuePrefix}${run2.workflowName}`;
48848
- await enqueue(queueName, { runId: run2.runId });
48849
- reenqueued++;
48850
- } catch (err) {
48851
- console.warn(`[${label}] Failed to re-enqueue run ${run2.runId}: ${err}`);
48852
- }
48836
+ let cursor;
48837
+ let hasMore = true;
48838
+ while (hasMore) {
48839
+ const page = await runs.list({
48840
+ status: ["pending", "running"],
48841
+ resolveData: "none",
48842
+ pagination: { cursor }
48843
+ });
48844
+ for (const run2 of page.data) {
48845
+ try {
48846
+ const queueName = `${workflowQueuePrefix}${run2.workflowName}`;
48847
+ await enqueue(queueName, { runId: run2.runId });
48848
+ reenqueued++;
48849
+ } catch (err) {
48850
+ console.warn(`[${label}] Failed to re-enqueue run ${run2.runId}: ${err}`);
48853
48851
  }
48854
- hasMore = page.hasMore;
48855
- cursor = page.cursor ?? void 0;
48856
48852
  }
48853
+ hasMore = page.hasMore;
48854
+ cursor = page.cursor ?? void 0;
48857
48855
  }
48858
48856
  if (reenqueued > 0 && isDebugEnabled$1()) {
48859
48857
  console.debug(`[${label}] Re-enqueued ${reenqueued} active run(s) on startup`);
@@ -54985,7 +54983,7 @@ function replaceEncryptedAndExpiredWithMarkers(resource) {
54985
54983
  }
54986
54984
  async function hydrateResourceIOAsync(resource, key) {
54987
54985
  const { hydrateDataWithKey: hydrateDataWithKey2, deriveRunPayloadKeys: deriveRunPayloadKeys2 } = await Promise.resolve().then(() => serializationFormat);
54988
- const { ensureZstdDecoderRegistered } = await import("./zstd-browser-decoder-Ce8lEOjC.js");
54986
+ const { ensureZstdDecoderRegistered } = await import("./zstd-browser-decoder-BlsTrKGs.js");
54989
54987
  ensureZstdDecoderRegistered();
54990
54988
  const cryptoKey = key ? await deriveRunPayloadKeys2(key) : void 0;
54991
54989
  const revivers = getRevivers();
@@ -85929,7 +85927,7 @@ var tn = f("block", "before:content-[counter(line)]", "before:inline-block", "be
85929
85927
  var et = ({ className: e, language: t, style: o, isIncomplete: n, ...s2 }) => jsxRuntimeExports.jsx("div", { className: f("my-4 flex w-full flex-col gap-2 rounded-xl border border-border bg-sidebar p-2", e), "data-incomplete": n || void 0, "data-language": t, "data-streamdown": "code-block", style: { contentVisibility: "auto", containIntrinsicSize: "auto 200px", ...o }, ...s2 });
85930
85928
  var Se = reactExports.createContext({ code: "" }), de = () => reactExports.useContext(Se);
85931
85929
  var ot = ({ language: e }) => jsxRuntimeExports.jsx("div", { className: "flex h-8 items-center text-muted-foreground text-xs", "data-language": e, "data-streamdown": "code-block-header", children: jsxRuntimeExports.jsx("span", { className: "ml-1 font-mono lowercase", children: e }) });
85932
- var cn$1 = /\n+$/, dn = reactExports.lazy(() => import("./highlighted-body-B3W2YXNL-DY_BqM6l.js").then((e) => ({ default: e.HighlightedCodeBlockBody }))), rt = ({ code: e, language: t, className: o, children: n, isIncomplete: s2 = false, ...r2 }) => {
85930
+ var cn$1 = /\n+$/, dn = reactExports.lazy(() => import("./highlighted-body-B3W2YXNL-BMAfAXV9.js").then((e) => ({ default: e.HighlightedCodeBlockBody }))), rt = ({ code: e, language: t, className: o, children: n, isIncomplete: s2 = false, ...r2 }) => {
85933
85931
  let i = reactExports.useMemo(() => e.replace(cn$1, ""), [e]), c = reactExports.useMemo(() => ({ bg: "transparent", fg: "inherit", tokens: i.split(`
85934
85932
  `).map((a2) => [{ content: a2, color: "inherit", bgColor: "transparent", htmlStyle: {}, offset: 0 }]) }), [i]);
85935
85933
  return jsxRuntimeExports.jsx(Se.Provider, { value: { code: e }, children: jsxRuntimeExports.jsxs(et, { isIncomplete: s2, language: t, children: [jsxRuntimeExports.jsx(ot, { language: t }), n ? jsxRuntimeExports.jsx("div", { className: "pointer-events-none sticky top-2 z-10 -mt-10 flex h-8 items-center justify-end", children: jsxRuntimeExports.jsx("div", { className: "pointer-events-auto flex shrink-0 items-center gap-2 rounded-md border border-sidebar bg-sidebar/80 px-1.5 py-1 supports-[backdrop-filter]:bg-sidebar/70 supports-[backdrop-filter]:backdrop-blur", "data-streamdown": "code-block-actions", children: n }) }) : null, jsxRuntimeExports.jsx(reactExports.Suspense, { fallback: jsxRuntimeExports.jsx(Qe, { className: o, language: t, result: c, ...r2 }), children: jsxRuntimeExports.jsx(dn, { className: o, code: i, language: t, raw: c, ...r2 }) })] }) });
@@ -86251,7 +86249,7 @@ var Dt = ({ children: e, className: t, onDownload: o, onError: n }) => {
86251
86249
  }, []), jsxRuntimeExports.jsxs("div", { className: "relative", ref: i, children: [jsxRuntimeExports.jsx("button", { className: f("cursor-pointer p-1 text-muted-foreground transition-all hover:text-foreground disabled:cursor-not-allowed disabled:opacity-50", t), disabled: c, onClick: () => r2(!s2), title: "Download table", type: "button", children: e != null ? e : jsxRuntimeExports.jsx(Z, { size: 14 }) }), s2 ? jsxRuntimeExports.jsxs("div", { className: "absolute top-full right-0 z-10 mt-1 min-w-[120px] overflow-hidden rounded-md border border-border bg-background shadow-lg", children: [jsxRuntimeExports.jsx("button", { className: "w-full px-3 py-2 text-left text-sm transition-colors hover:bg-muted/40", onClick: () => a2("csv"), title: "Download table as CSV", type: "button", children: "CSV" }), jsxRuntimeExports.jsx("button", { className: "w-full px-3 py-2 text-left text-sm transition-colors hover:bg-muted/40", onClick: () => a2("markdown"), title: "Download table as Markdown", type: "button", children: "Markdown" })] }) : null] });
86252
86250
  };
86253
86251
  var Vt = ({ children: e, className: t, showControls: o, ...n }) => jsxRuntimeExports.jsxs("div", { className: "my-4 flex flex-col gap-2 rounded-lg border border-border bg-sidebar p-2", "data-streamdown": "table-wrapper", children: [o ? jsxRuntimeExports.jsxs("div", { className: "flex items-center justify-end gap-1", children: [jsxRuntimeExports.jsx(Ht, {}), jsxRuntimeExports.jsx(Dt, {})] }) : null, jsxRuntimeExports.jsx("div", { className: "border-collapse overflow-x-auto overscroll-y-auto rounded-md border border-border bg-background", children: jsxRuntimeExports.jsx("table", { className: f("w-full divide-y divide-border", t), "data-streamdown": "table", ...n, children: e }) })] });
86254
- var Jn = reactExports.lazy(() => import("./mermaid-3ZIDBTTL-Bca_z0-z.js").then((e) => ({ default: e.Mermaid }))), Kn = /language-([^\s]+)/;
86252
+ var Jn = reactExports.lazy(() => import("./mermaid-3ZIDBTTL-B43KQnMx.js").then((e) => ({ default: e.Mermaid }))), Kn = /language-([^\s]+)/;
86255
86253
  function ke(e, t) {
86256
86254
  if (!(e != null && e.position || t != null && t.position)) return true;
86257
86255
  if (!(e != null && e.position && (t != null && t.position))) return false;
@@ -94810,7 +94808,8 @@ class WorkflowSuspension extends Error {
94810
94808
  }
94811
94809
  function composeLogLine(prefix, message2, metadata) {
94812
94810
  const [framing, ...rest] = message2.split("\n");
94813
- const body2 = rest.join("\n");
94811
+ const embeddedBody = rest.join("\n");
94812
+ const body2 = embeddedBody.trim() ? embeddedBody : pickString(metadata ?? {}, "errorStack") ?? "";
94814
94813
  const fields = renderStructuredFields(framing ?? "", body2, metadata);
94815
94814
  const trimmedBody = trimStackBody(body2);
94816
94815
  const lines = [`${prefix} ${framing ?? ""}`];
@@ -94846,7 +94845,8 @@ function renderStructuredFields(framing, body2, metadata) {
94846
94845
  const lines = [];
94847
94846
  const errorName = pickString(metadata, "errorName");
94848
94847
  const attribution = pickString(metadata, "errorAttribution");
94849
- if (errorName || attribution) {
94848
+ const nameEchoedByStack = errorName !== null && stackHeaderNames(body2, errorName);
94849
+ if (attribution || errorName && !nameEchoedByStack) {
94850
94850
  const badge = attribution ? attribution === "sdk" ? magenta("sdk error") : red("user error") : "";
94851
94851
  const cls = errorName ? bold(errorName) : "";
94852
94852
  const sep2 = badge && cls ? dim(" · ") : "";
@@ -94943,6 +94943,11 @@ function isFrameworkFrame(line) {
94943
94943
  }
94944
94944
  return false;
94945
94945
  }
94946
+ function stackHeaderNames(body2, errorName) {
94947
+ var _a3;
94948
+ const header = ((_a3 = body2.split("\n", 1)[0]) == null ? void 0 : _a3.trim()) ?? "";
94949
+ return header === errorName || header.startsWith(`${errorName}:`);
94950
+ }
94946
94951
  function pickString(metadata, key) {
94947
94952
  const v2 = metadata[key];
94948
94953
  return typeof v2 === "string" && v2.length > 0 ? v2 : null;
@@ -98754,12 +98759,12 @@ globalSingleton("@workflow/core//envWarnings", 1, () => ({
98754
98759
  maxInlineStepsValues: /* @__PURE__ */ new Set(),
98755
98760
  maxEventsValues: /* @__PURE__ */ new Set()
98756
98761
  }));
98757
- const version$1 = "5.0.0-beta.51";
98762
+ const version$1 = "5.0.0-beta.52";
98758
98763
  const DEFAULT_HEALTH_CHECK_TIMEOUT = 3e4;
98759
- const SAFE_WORKFLOW_NAME_PATTERN = /^[a-zA-Z0-9_\-./@]+$/;
98764
+ const SAFE_WORKFLOW_NAME_PATTERN = /^[a-zA-Z0-9_\-./@()[\]]+$/;
98760
98765
  function getWorkflowQueueName(workflowName, namespace2) {
98761
98766
  if (!SAFE_WORKFLOW_NAME_PATTERN.test(workflowName)) {
98762
- throw new Error(`Invalid workflow name "${workflowName}": must only contain alphanumeric characters, underscores, hyphens, dots, forward slashes, or at signs`);
98767
+ throw new Error(`Invalid workflow name "${workflowName}": must only contain alphanumeric characters, underscores, hyphens, dots, forward slashes, at signs, parentheses, or square brackets`);
98763
98768
  }
98764
98769
  const prefix = getQueueTopicPrefix("workflow", resolveQueueNamespace(namespace2));
98765
98770
  return `${prefix}${workflowName}`;
@@ -129485,8 +129490,11 @@ function createRunsStorage(basedir, tag) {
129485
129490
  if ((params == null ? void 0 : params.workflowName) && run2.workflowName !== params.workflowName) {
129486
129491
  return false;
129487
129492
  }
129488
- if ((params == null ? void 0 : params.status) && run2.status !== params.status) {
129489
- return false;
129493
+ if ((params == null ? void 0 : params.status) !== void 0) {
129494
+ const statuses = Array.isArray(params.status) ? params.status : [params.status];
129495
+ if (!statuses.includes(run2.status)) {
129496
+ return false;
129497
+ }
129490
129498
  }
129491
129499
  return true;
129492
129500
  },
@@ -130987,7 +130995,7 @@ function createWorld$2(args) {
130987
130995
  const basedir = mergedConfig.dataDir;
130988
130996
  const hooksDir = path$3.join(basedir, "hooks");
130989
130997
  const taggedHookFiles = await listTaggedFiles(hooksDir, tag);
130990
- const { HookSchema: HookSchema2 } = await import("./index-Az8HzIf_.js");
130998
+ const { HookSchema: HookSchema2 } = await import("./index-BslvMxmv.js");
130991
130999
  await Promise.all(taggedHookFiles.map(async (hookFile) => {
130992
131000
  const hook = await readJSON(path$3.join(hooksDir, hookFile), HookSchema2);
130993
131001
  if (hook == null ? void 0 : hook.token) {
@@ -131170,8 +131178,8 @@ function requireGetVercelOidcToken() {
131170
131178
  }
131171
131179
  try {
131172
131180
  const [{ getTokenPayload, isExpired }, { refreshToken }] = await Promise.all([
131173
- await import("./token-util-BgQCuyAc.js").then((n) => n.t),
131174
- await import("./token-BcUtceXk.js").then((n) => n.t)
131181
+ await import("./token-util-C1nMjR5C.js").then((n) => n.t),
131182
+ await import("./token-CSPXQgAT.js").then((n) => n.t)
131175
131183
  ]);
131176
131184
  if (!token || isExpired(getTokenPayload(token), options == null ? void 0 : options.expirationBufferMs)) {
131177
131185
  await refreshToken(options);
@@ -131734,7 +131742,7 @@ function requireDist() {
131734
131742
  return dist;
131735
131743
  }
131736
131744
  var distExports = requireDist();
131737
- const version = "5.0.0-beta.46";
131745
+ const version = "5.0.0-beta.47";
131738
131746
  const pools = globalSingleton("@workflow/world-vercel//httpPools", 1, () => ({
131739
131747
  dispatcher: void 0,
131740
131748
  queueDispatcher: void 0,
@@ -133330,7 +133338,7 @@ function createGetEncryptionKeyForRun(projectId, teamId, token, dispatcher2) {
133330
133338
  };
133331
133339
  }
133332
133340
  async function getDeadline() {
133333
- const { getDeadline: getDeadline2 } = await import("./index-CvyMHP_b.js").then((n) => n.i);
133341
+ const { getDeadline: getDeadline2 } = await import("./index-BY1UiSvZ.js").then((n) => n.i);
133334
133342
  return getDeadline2();
133335
133343
  }
133336
133344
  const WORKFLOW_SERVER_SERVICE = {
@@ -138467,7 +138475,7 @@ const wsEventsChannelForInvocation = (runId, config2) => {
138467
138475
  open() {
138468
138476
  if (!runId || !isWsEventsTransportEnabled())
138469
138477
  return;
138470
- claim2 = import("./ws-transport-nlG6b7qI.js").then(({ openWsChannel }) => openWsChannel(runId, config2)).catch(() => void 0);
138478
+ claim2 = import("./ws-transport-CfFD7U2V.js").then(({ openWsChannel }) => openWsChannel(runId, config2)).catch(() => void 0);
138471
138479
  },
138472
138480
  /**
138473
138481
  * Awaited, unlike the open: work scheduled after the handler returns is not
@@ -139777,7 +139785,7 @@ function wsReplyStatus(reply, endpoint) {
139777
139785
  return status;
139778
139786
  }
139779
139787
  async function postEventFrameOverWs(input, config2) {
139780
- const { resolveWsTransport } = await import("./ws-transport-nlG6b7qI.js");
139788
+ const { resolveWsTransport } = await import("./ws-transport-CfFD7U2V.js");
139781
139789
  const { runId } = input;
139782
139790
  const resolved = resolveWsTransport(runId, config2);
139783
139791
  if (!resolved)
@@ -140095,6 +140103,9 @@ async function listWorkflowRuns(params = {}, config2) {
140095
140103
  const searchParams = new URLSearchParams();
140096
140104
  if (workflowName)
140097
140105
  searchParams.set("workflowName", workflowName);
140106
+ if (Array.isArray(status)) {
140107
+ throw new WorkflowWorldError("listWorkflowRuns: status does not support an array of statuses on world-vercel yet; pass a single status", { code: "INVALID_ARGUMENT", field: "status" });
140108
+ }
140098
140109
  if (status)
140099
140110
  searchParams.set("status", status);
140100
140111
  if (pagination == null ? void 0 : pagination.limit)
@@ -140853,7 +140864,7 @@ function beginNormalWsClose(ws, reason) {
140853
140864
  await observed;
140854
140865
  span == null ? void 0 : span.setAttribute("workflow.stream.ws.close_cleanup_timeout", timedOut);
140855
140866
  });
140856
- void import("./index-CvyMHP_b.js").then((n) => n.i).then(({ waitUntil: waitUntil2 }) => waitUntil2(cleanup)).catch(() => {
140867
+ void import("./index-BY1UiSvZ.js").then((n) => n.i).then(({ waitUntil: waitUntil2 }) => waitUntil2(cleanup)).catch(() => {
140857
140868
  });
140858
140869
  void cleanup.catch(() => {
140859
140870
  });
@@ -141205,7 +141216,7 @@ class VercelStreamWriteSession {
141205
141216
  return http3;
141206
141217
  });
141207
141218
  const [{ WebSocket: WebSocketImpl }, http2] = await Promise.all([
141208
- import("./wrapper-BxY6HvLW.js"),
141219
+ import("./wrapper-DLlJtdca.js"),
141209
141220
  httpPromise
141210
141221
  ]);
141211
141222
  if (this.mode !== "connecting")
@@ -141963,7 +141974,7 @@ globalSingleton("@workflow/core//devServerPort", 1, () => ({
141963
141974
  inFlight: void 0
141964
141975
  }));
141965
141976
  function waitUntil(promise2) {
141966
- void import("./index-CvyMHP_b.js").then((n) => n.i).then(({ waitUntil: waitUntil2 }) => {
141977
+ void import("./index-BY1UiSvZ.js").then((n) => n.i).then(({ waitUntil: waitUntil2 }) => {
141967
141978
  waitUntil2(promise2);
141968
141979
  });
141969
141980
  }
@@ -2,7 +2,7 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { b4 as reactExports, b5 as R, b6 as Ks, b7 as jsxRuntimeExports, b8 as Qe } from "./app-8hyjFpMO.js";
5
+ import { b4 as reactExports, b5 as R, b6 as Ks, b7 as jsxRuntimeExports, b8 as Qe } from "./app-CPvbv5SM.js";
6
6
  import "node:stream";
7
7
  import "stream";
8
8
  import "util";
@@ -1137,7 +1137,7 @@ function requireWebsocket() {
1137
1137
  const DEFAULT_MAX_PAYLOAD = 256 * 1024;
1138
1138
  async function loadWebSocketServer() {
1139
1139
  try {
1140
- const ws = await import("./wrapper-BxY6HvLW.js");
1140
+ const ws = await import("./wrapper-DLlJtdca.js");
1141
1141
  return ws.WebSocketServer;
1142
1142
  } catch {
1143
1143
  throw new Error(
@@ -2,8 +2,8 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { H as HookSchema } from "./app-8hyjFpMO.js";
6
- import { A, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, B, r, s, t, u, C, D, v, E, w, x, y, F, z, G, I, J, K, L, M, O, P, Q, R, S, T, U, V, W, X, Y, Z, _, $, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, aa, ab, ac, ad, ae, af, ag, ah, ai, aj, ak, al, am, an, ao, ap, aq, ar, as, at, au, av, aw, ax, ay, az, aA, aB, aC, aD, aE, aF, aG, aH, aI, aJ, aK, aL, aM, aN, aO, aP, aQ, aR, aS, aT, aU, aV, aW, aX, aY, aZ, a_, a$, b0, b1, b2, b3 } from "./app-8hyjFpMO.js";
5
+ import { H as HookSchema } from "./app-CPvbv5SM.js";
6
+ import { A, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, B, r, s, t, u, C, D, v, E, w, x, y, F, z, G, I, J, K, L, M, O, P, Q, R, S, T, U, V, W, X, Y, Z, _, $, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, aa, ab, ac, ad, ae, af, ag, ah, ai, aj, ak, al, am, an, ao, ap, aq, ar, as, at, au, av, aw, ax, ay, az, aA, aB, aC, aD, aE, aF, aG, aH, aI, aJ, aK, aL, aM, aN, aO, aP, aQ, aR, aS, aT, aU, aV, aW, aX, aY, aZ, a_, a$, b0, b1, b2, b3 } from "./app-CPvbv5SM.js";
7
7
  import "node:stream";
8
8
  import "stream";
9
9
  import "util";
@@ -2,7 +2,7 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { N as Nt } from "./app-8hyjFpMO.js";
5
+ import { N as Nt } from "./app-CPvbv5SM.js";
6
6
  import "node:stream";
7
7
  import "stream";
8
8
  import "util";
@@ -2,7 +2,7 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { bs as requireTokenError, br as requireTokenUtil, bq as getDefaultExportFromCjs } from "./app-8hyjFpMO.js";
5
+ import { bs as requireTokenError, br as requireTokenUtil, bq as getDefaultExportFromCjs } from "./app-CPvbv5SM.js";
6
6
  function _mergeNamespaces(n, m) {
7
7
  for (var i = 0; i < m.length; i++) {
8
8
  const e = m[i];
@@ -2,7 +2,7 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { bq as getDefaultExportFromCjs, br as requireTokenUtil } from "./app-8hyjFpMO.js";
5
+ import { bq as getDefaultExportFromCjs, br as requireTokenUtil } from "./app-CPvbv5SM.js";
6
6
  function _mergeNamespaces(n, m) {
7
7
  for (var i = 0; i < m.length; i++) {
8
8
  const e = m[i];
@@ -2,7 +2,7 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { bt as getAugmentedNamespace, bq as getDefaultExportFromCjs } from "./app-8hyjFpMO.js";
5
+ import { bt as getAugmentedNamespace, bq as getDefaultExportFromCjs } from "./app-CPvbv5SM.js";
6
6
  import require$$0$2 from "stream";
7
7
  import require$$0$3 from "events";
8
8
  import require$$2$1 from "http";
@@ -2,9 +2,9 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { W as WebSocket } from "./websocket-server-D2905vlr.js";
6
- import { p, r, s, w, a, e, b } from "./websocket-server-D2905vlr.js";
7
- import "./app-8hyjFpMO.js";
5
+ import { W as WebSocket } from "./websocket-server-Bcu1iZeP.js";
6
+ import { p, r, s, w, a, e, b } from "./websocket-server-Bcu1iZeP.js";
7
+ import "./app-CPvbv5SM.js";
8
8
  import "node:stream";
9
9
  import "stream";
10
10
  import "util";
@@ -5,8 +5,8 @@ import { createRequire as __wkfCreateRequire } from "node:module";
5
5
  if (typeof require === "undefined") {
6
6
  globalThis.require = __wkfCreateRequire(import.meta.url);
7
7
  }
8
- import { ba as isWsEventsTransportEnabled, bb as debugLog, bc as getHttpUrl, bd as globalSingleton, be as version, bf as getHttpConfig, bg as headersToRecord, bh as getRequestTimeoutMs, bi as injectTraceContextIntoHeaders, bj as withHttpClientSpan, bk as ErrorType, bl as WorkflowWsReconnectAttempt, bm as NetworkProtocolName, bn as WorkflowEventsTransport, bo as distExports, bp as decodeFrames } from "./app-8hyjFpMO.js";
9
- import { W as WebSocket } from "./websocket-server-D2905vlr.js";
8
+ import { ba as isWsEventsTransportEnabled, bb as debugLog, bc as getHttpUrl, bd as globalSingleton, be as version, bf as getHttpConfig, bg as headersToRecord, bh as getRequestTimeoutMs, bi as injectTraceContextIntoHeaders, bj as withHttpClientSpan, bk as ErrorType, bl as WorkflowWsReconnectAttempt, bm as NetworkProtocolName, bn as WorkflowEventsTransport, bo as distExports, bp as decodeFrames } from "./app-CPvbv5SM.js";
9
+ import { W as WebSocket } from "./websocket-server-Bcu1iZeP.js";
10
10
  import "node:stream";
11
11
  import "stream";
12
12
  import "util";
@@ -2,7 +2,7 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { b9 as registerZstdDecoder } from "./app-8hyjFpMO.js";
5
+ import { b9 as registerZstdDecoder } from "./app-CPvbv5SM.js";
6
6
  import "node:stream";
7
7
  import "stream";
8
8
  import "util";
@@ -2,7 +2,7 @@ import { createRequire as __wkfCreateRequire } from "node:module";
2
2
  if (typeof require === "undefined") {
3
3
  globalThis.require = __wkfCreateRequire(import.meta.url);
4
4
  }
5
- import { bu, bv } from "./assets/app-8hyjFpMO.js";
5
+ import { bu, bv } from "./assets/app-CPvbv5SM.js";
6
6
  import "express";
7
7
  import "node:stream";
8
8
  import "stream";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@workflow/web",
3
3
  "description": "Workflow Observability UI",
4
- "version": "5.0.0-beta.51",
4
+ "version": "5.0.0-beta.52",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "files": [
@@ -39,7 +39,7 @@
39
39
  "directory": "packages/web"
40
40
  },
41
41
  "dependencies": {
42
- "@workflow/world-local": "5.0.0-beta.44",
42
+ "@workflow/world-local": "5.0.0-beta.45",
43
43
  "express": "^5.2.1",
44
44
  "swr": "^2.3.6"
45
45
  },
@@ -65,12 +65,12 @@
65
65
  "@types/react": "19",
66
66
  "@types/react-dom": "19",
67
67
  "@vercel/react-router": "1.2.6",
68
- "@workflow/core": "5.0.0-beta.51",
68
+ "@workflow/core": "5.0.0-beta.52",
69
69
  "@workflow/errors": "5.0.0-beta.21",
70
70
  "@workflow/utils": "5.0.0-beta.10",
71
- "@workflow/web-shared": "5.0.0-beta.51",
72
- "@workflow/world": "5.0.0-beta.35",
73
- "@workflow/world-vercel": "5.0.0-beta.46",
71
+ "@workflow/web-shared": "5.0.0-beta.52",
72
+ "@workflow/world": "5.0.0-beta.36",
73
+ "@workflow/world-vercel": "5.0.0-beta.47",
74
74
  "@xyflow/react": "12.10.1",
75
75
  "cbor-x": "^1",
76
76
  "class-variance-authority": "0.7.1",