@workflow/web 5.0.0-beta.39 → 5.0.0-beta.40
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/build/client/assets/{app-BqwHo5GR.css → app-BkGXg64e.css} +1 -1
- package/build/client/assets/{arrow-up-right-Ccx_FPfU.js → arrow-up-right-Br49goey.js} +1 -1
- package/build/client/assets/{highlighted-body-B3W2YXNL-DMawUm9n.js → highlighted-body-B3W2YXNL-B5pbFkUr.js} +1 -1
- package/build/client/assets/{home-B6O_uPSC.js → home-DrXIdsG5.js} +60 -35
- package/build/client/assets/{loader-circle-BrO0dxVn.js → loader-circle-3PJSFf84.js} +1 -1
- package/build/client/assets/{manifest-7e8691f4.js → manifest-0c933230.js} +1 -1
- package/build/client/assets/{mermaid-3ZIDBTTL-D20ZkB54.js → mermaid-3ZIDBTTL-qqUSEahK.js} +151 -107
- package/build/client/assets/{root-CxZylOIf.css → root-ZRjqDhEN.css} +1 -1
- package/build/client/assets/{root-dudvdmvf.js → root-n7Zz0dTX.js} +3 -3
- package/build/client/assets/{run-detail-DtCCxxv2.js → run-detail-DHeMEsdg.js} +8 -4
- package/build/client/assets/{workflow-graph-viewer-B01nH75E.js → workflow-graph-viewer-DWdsfF3d.js} +7 -3
- package/build/client/assets/{zstd-browser-decoder-Dw3HhTgO.js → zstd-browser-decoder-DemK2pIP.js} +1 -1
- package/build/server/assets/{app-Bd12Opaf.js → app-BJXoDV4n.js} +3132 -614
- package/build/server/assets/{highlighted-body-B3W2YXNL-CFlRme7u.js → highlighted-body-B3W2YXNL-Kki0lKyo.js} +3 -1
- package/build/server/assets/{index-DIXsjgfZ.js → index-7-uV1dU1.js} +142 -1
- package/build/server/assets/index-XksKPyou.js +143 -0
- package/build/server/assets/{mermaid-3ZIDBTTL-CQsU8DGa.js → mermaid-3ZIDBTTL-Bh_zbSQ-.js} +3 -1
- package/build/server/assets/{token-XJr1pjmC.js → token-D8pb4TJ8.js} +1 -1
- package/build/server/assets/{token-util-BJaMxWWP.js → token-util-DPJj3x0B.js} +1 -1
- package/build/server/assets/wrapper-CsxTXsPR.js +3708 -0
- package/build/server/assets/{zstd-browser-decoder-DL7Vc3pV.js → zstd-browser-decoder-CWJVPmcb.js} +3 -1
- package/build/server/index.js +5 -3
- package/package.json +7 -7
- package/build/server/assets/index-B6SJpqpo.js +0 -137
package/build/server/assets/{zstd-browser-decoder-DL7Vc3pV.js → zstd-browser-decoder-CWJVPmcb.js}
RENAMED
|
@@ -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 {
|
|
5
|
+
import { aJ as registerZstdDecoder } from "./app-BJXoDV4n.js";
|
|
6
6
|
import "node:stream";
|
|
7
7
|
import "stream";
|
|
8
8
|
import "util";
|
|
@@ -40,6 +40,8 @@ import "node:timers";
|
|
|
40
40
|
import "node:dns";
|
|
41
41
|
import "path";
|
|
42
42
|
import "fs";
|
|
43
|
+
import "constants";
|
|
44
|
+
import "assert";
|
|
43
45
|
import "os";
|
|
44
46
|
import "net";
|
|
45
47
|
import "express";
|
package/build/server/index.js
CHANGED
|
@@ -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 {
|
|
5
|
+
import { aO, aP } from "./assets/app-BJXoDV4n.js";
|
|
6
6
|
import "express";
|
|
7
7
|
import "node:stream";
|
|
8
8
|
import "stream";
|
|
@@ -41,9 +41,11 @@ import "node:timers";
|
|
|
41
41
|
import "node:dns";
|
|
42
42
|
import "path";
|
|
43
43
|
import "fs";
|
|
44
|
+
import "constants";
|
|
45
|
+
import "assert";
|
|
44
46
|
import "os";
|
|
45
47
|
import "net";
|
|
46
48
|
export {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
aO as app,
|
|
50
|
+
aP as createFetchHandler
|
|
49
51
|
};
|
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.
|
|
4
|
+
"version": "5.0.0-beta.40",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"files": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"express": "^5.2.1",
|
|
43
43
|
"swr": "^2.3.6",
|
|
44
|
-
"@workflow/world-local": "5.0.0-beta.
|
|
44
|
+
"@workflow/world-local": "5.0.0-beta.34"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@biomejs/biome": "^2.4.4",
|
|
@@ -86,12 +86,12 @@
|
|
|
86
86
|
"typescript": "^6.0.3",
|
|
87
87
|
"vite": "^6",
|
|
88
88
|
"vitest": "^3.2.7",
|
|
89
|
-
"@workflow/core": "5.0.0-beta.
|
|
90
|
-
"@workflow/errors": "5.0.0-beta.
|
|
89
|
+
"@workflow/core": "5.0.0-beta.40",
|
|
90
|
+
"@workflow/errors": "5.0.0-beta.16",
|
|
91
91
|
"@workflow/utils": "5.0.0-beta.8",
|
|
92
|
-
"@workflow/web-shared": "5.0.0-beta.
|
|
93
|
-
"@workflow/world": "5.0.0-beta.
|
|
94
|
-
"@workflow/world-vercel": "5.0.0-beta.
|
|
92
|
+
"@workflow/web-shared": "5.0.0-beta.40",
|
|
93
|
+
"@workflow/world": "5.0.0-beta.25",
|
|
94
|
+
"@workflow/world-vercel": "5.0.0-beta.36"
|
|
95
95
|
},
|
|
96
96
|
"scripts": {
|
|
97
97
|
"dev": "react-router dev",
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
import { createRequire as __wkfCreateRequire } from "node:module";
|
|
2
|
-
if (typeof require === "undefined") {
|
|
3
|
-
globalThis.require = __wkfCreateRequire(import.meta.url);
|
|
4
|
-
}
|
|
5
|
-
import { H as HookSchema } from "./app-Bd12Opaf.js";
|
|
6
|
-
import { A, a, b, c, d, e, f, g, h, i, j, k, B, C, D, l, E, m, n, o, p, q, r, s, t, u, v, L, M, P, w, Q, x, R, y, z, S, F, G, I, J, K, O, 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 } from "./app-Bd12Opaf.js";
|
|
7
|
-
import "node:stream";
|
|
8
|
-
import "stream";
|
|
9
|
-
import "util";
|
|
10
|
-
import "crypto";
|
|
11
|
-
import "async_hooks";
|
|
12
|
-
import "node:crypto";
|
|
13
|
-
import "node:process";
|
|
14
|
-
import "node:path";
|
|
15
|
-
import "node:url";
|
|
16
|
-
import "module";
|
|
17
|
-
import "node:fs/promises";
|
|
18
|
-
import "node:module";
|
|
19
|
-
import "node:util";
|
|
20
|
-
import "node:async_hooks";
|
|
21
|
-
import "node:fs";
|
|
22
|
-
import "node:os";
|
|
23
|
-
import "node:child_process";
|
|
24
|
-
import "node:timers/promises";
|
|
25
|
-
import "events";
|
|
26
|
-
import "node:assert";
|
|
27
|
-
import "node:net";
|
|
28
|
-
import "node:http";
|
|
29
|
-
import "node:querystring";
|
|
30
|
-
import "node:events";
|
|
31
|
-
import "node:diagnostics_channel";
|
|
32
|
-
import "node:tls";
|
|
33
|
-
import "node:buffer";
|
|
34
|
-
import "node:zlib";
|
|
35
|
-
import "node:perf_hooks";
|
|
36
|
-
import "node:util/types";
|
|
37
|
-
import "node:sqlite";
|
|
38
|
-
import "node:worker_threads";
|
|
39
|
-
import "node:console";
|
|
40
|
-
import "node:timers";
|
|
41
|
-
import "node:dns";
|
|
42
|
-
import "path";
|
|
43
|
-
import "fs";
|
|
44
|
-
import "os";
|
|
45
|
-
import "net";
|
|
46
|
-
import "express";
|
|
47
|
-
export {
|
|
48
|
-
A as ATTRIBUTE_KEY_MAX_LENGTH,
|
|
49
|
-
a as ATTRIBUTE_MAX_PER_RUN,
|
|
50
|
-
b as ATTRIBUTE_VALUE_MAX_BYTES,
|
|
51
|
-
c as AnalyticsAttributeKeySchema,
|
|
52
|
-
d as AnalyticsEventSchema,
|
|
53
|
-
e as AnalyticsHookSchema,
|
|
54
|
-
f as AnalyticsRunSchema,
|
|
55
|
-
g as AnalyticsStepSchema,
|
|
56
|
-
h as AnalyticsWaitSchema,
|
|
57
|
-
i as AttributeChangeSchema,
|
|
58
|
-
j as AttributeChangesSchema,
|
|
59
|
-
k as AttributeValidationError,
|
|
60
|
-
B as BaseEventSchema,
|
|
61
|
-
C as CHILD_ENTITY_CREATION_EVENT_TYPES,
|
|
62
|
-
D as DEFAULT_TIMESTAMP_THRESHOLD_FUTURE_MS,
|
|
63
|
-
l as DEFAULT_TIMESTAMP_THRESHOLD_PAST_MS,
|
|
64
|
-
E as EVENT_DATA_PAYLOAD_FIELD_BY_EVENT_TYPE,
|
|
65
|
-
m as EVENT_DATA_REF_FIELDS,
|
|
66
|
-
n as EventSchema,
|
|
67
|
-
o as EventTypeSchema,
|
|
68
|
-
p as HOOK_EVENTS_REQUIRING_EXISTENCE,
|
|
69
|
-
q as HOOK_LIFECYCLE_EVENT_TYPES,
|
|
70
|
-
r as HOOK_RESUME_DEDUP_VERSION,
|
|
71
|
-
s as HOOK_RESUME_INPUT_VERSION,
|
|
72
|
-
t as HealthCheckPayloadSchema,
|
|
73
|
-
u as HookCreatedEventSchema,
|
|
74
|
-
v as HookResumeCapabilitiesSchema,
|
|
75
|
-
HookSchema,
|
|
76
|
-
L as LegacySerializedDataSchemaV1,
|
|
77
|
-
M as MessageId,
|
|
78
|
-
P as PARENT_RUN_ID_ATTRIBUTE,
|
|
79
|
-
w as PaginatedResponseSchema,
|
|
80
|
-
Q as QueuePayloadSchema,
|
|
81
|
-
x as QueuePrefix,
|
|
82
|
-
R as RESERVED_ATTRIBUTE_KEY_PREFIX,
|
|
83
|
-
y as ROOT_RUN_ID_ATTRIBUTE,
|
|
84
|
-
z as RunInputSchema,
|
|
85
|
-
S as SPEC_VERSION_CURRENT,
|
|
86
|
-
F as SPEC_VERSION_LEGACY,
|
|
87
|
-
G as SPEC_VERSION_SUPPORTS_ATTRIBUTES,
|
|
88
|
-
I as SPEC_VERSION_SUPPORTS_CBOR_QUEUE_TRANSPORT,
|
|
89
|
-
J as SPEC_VERSION_SUPPORTS_COMPRESSION,
|
|
90
|
-
K as STEP_EVENT_TYPES,
|
|
91
|
-
O as SerializedDataSchema,
|
|
92
|
-
T as StepSchema,
|
|
93
|
-
U as StepStatusSchema,
|
|
94
|
-
V as StructuredErrorSchema,
|
|
95
|
-
W as TERMINAL_RUN_EVENT_TYPES,
|
|
96
|
-
X as TERMINAL_STEP_EVENT_TYPES,
|
|
97
|
-
Y as TERMINAL_STEP_STATUSES,
|
|
98
|
-
Z as TERMINAL_WORKFLOW_RUN_STATUSES,
|
|
99
|
-
_ as TerminalRunEventTypeSchema,
|
|
100
|
-
$ as TerminalStepStatusSchema,
|
|
101
|
-
a0 as TerminalWorkflowRunStatusSchema,
|
|
102
|
-
a1 as ValidQueueName,
|
|
103
|
-
a2 as WAIT_EVENT_TYPES,
|
|
104
|
-
a3 as WaitSchema,
|
|
105
|
-
a4 as WaitStatusSchema,
|
|
106
|
-
a5 as WorkflowInvokePayloadSchema,
|
|
107
|
-
a6 as WorkflowRunBaseSchema,
|
|
108
|
-
a7 as WorkflowRunSchema,
|
|
109
|
-
a8 as WorkflowRunStatusSchema,
|
|
110
|
-
a9 as applyAttributeChanges,
|
|
111
|
-
aa as envNumber,
|
|
112
|
-
ab as getEventDataPayloadField,
|
|
113
|
-
ac as getEventDataRefFields,
|
|
114
|
-
ad as getQueueTopicPrefix,
|
|
115
|
-
ae as isChildEntityCreationEvent,
|
|
116
|
-
af as isChildEntityCreationEventType,
|
|
117
|
-
ag as isHookEventRequiringExistence,
|
|
118
|
-
ah as isHookLifecycleEventType,
|
|
119
|
-
ai as isLegacySpecVersion,
|
|
120
|
-
aj as isStepEventType,
|
|
121
|
-
ak as isTerminalRunEventType,
|
|
122
|
-
al as isTerminalStepEventType,
|
|
123
|
-
am as isTerminalStepStatus,
|
|
124
|
-
an as isTerminalWorkflowRunStatus,
|
|
125
|
-
ao as isWaitEventType,
|
|
126
|
-
ap as parseQueueName,
|
|
127
|
-
aq as reenqueueActiveRuns,
|
|
128
|
-
ar as requiresNewerWorld,
|
|
129
|
-
as as resolveQueueNamespace,
|
|
130
|
-
at as stripEventDataRefs,
|
|
131
|
-
au as ulidToDate,
|
|
132
|
-
av as validateAttributeChanges,
|
|
133
|
-
aw as validateAttributeKey,
|
|
134
|
-
ax as validateAttributeValue,
|
|
135
|
-
ay as validateUlidTimestamp,
|
|
136
|
-
az as workflowRunIdSchema
|
|
137
|
-
};
|