@workflow/web-shared 4.1.0-beta.48 → 4.1.0-beta.49
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/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +9 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
export type { HealthCheckEndpoint, HealthCheckResult, } from '@workflow/core/runtime';
|
|
1
2
|
export { parseStepName, parseWorkflowName, } from '@workflow/utils/parse-name';
|
|
2
3
|
export type { Event, Hook, Step, WorkflowRun } from '@workflow/world';
|
|
4
|
+
export * from './components';
|
|
5
|
+
export { hookEventsToHookEntity, waitEventsToWaitEntity, } from './components/workflow-traces/trace-span-construction';
|
|
3
6
|
export type { EventAnalysis } from './lib/event-analysis';
|
|
4
7
|
export { analyzeEvents, hasPendingHooksFromEvents, hasPendingStepsFromEvents, isTerminalStatus, shouldShowReenqueueButton, } from './lib/event-analysis';
|
|
5
8
|
export type { StreamStep } from './lib/utils';
|
|
6
9
|
export { extractConversation, formatDuration, identifyStreamSteps, isDoStreamStep, } from './lib/utils';
|
|
7
|
-
export * from './components';
|
|
8
|
-
export { hookEventsToHookEntity, waitEventsToWaitEntity, } from './components/workflow-traces/trace-span-construction';
|
|
9
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,iBAAiB,GAClB,MAAM,4BAA4B,CAAC;AACpC,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,mBAAmB,EACnB,iBAAiB,GAClB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,aAAa,EACb,iBAAiB,GAClB,MAAM,4BAA4B,CAAC;AACpC,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACtE,cAAc,cAAc,CAAC;AAC7B,OAAO,EACL,sBAAsB,EACtB,sBAAsB,GACvB,MAAM,sDAAsD,CAAC;AAC9D,YAAY,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EACL,aAAa,EACb,yBAAyB,EACzB,yBAAyB,EACzB,gBAAgB,EAChB,yBAAyB,GAC1B,MAAM,sBAAsB,CAAC;AAC9B,YAAY,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,EACL,mBAAmB,EACnB,cAAc,EACd,mBAAmB,EACnB,cAAc,GACf,MAAM,aAAa,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { parseStepName, parseWorkflowName, } from '@workflow/utils/parse-name';
|
|
2
|
-
export { analyzeEvents, hasPendingHooksFromEvents, hasPendingStepsFromEvents, isTerminalStatus, shouldShowReenqueueButton, } from './lib/event-analysis';
|
|
3
|
-
export { extractConversation, formatDuration, identifyStreamSteps, isDoStreamStep, } from './lib/utils';
|
|
4
2
|
export * from './components';
|
|
5
3
|
export { hookEventsToHookEntity, waitEventsToWaitEntity, } from './components/workflow-traces/trace-span-construction';
|
|
4
|
+
export { analyzeEvents, hasPendingHooksFromEvents, hasPendingStepsFromEvents, isTerminalStatus, shouldShowReenqueueButton, } from './lib/event-analysis';
|
|
5
|
+
export { extractConversation, formatDuration, identifyStreamSteps, isDoStreamStep, } from './lib/utils';
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EACL,aAAa,EACb,iBAAiB,GAClB,MAAM,4BAA4B,CAAC;AAEpC,cAAc,cAAc,CAAC;AAC7B,OAAO,EACL,sBAAsB,EACtB,sBAAsB,GACvB,MAAM,sDAAsD,CAAC;AAE9D,OAAO,EACL,aAAa,EACb,yBAAyB,EACzB,yBAAyB,EACzB,gBAAgB,EAChB,yBAAyB,GAC1B,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EACL,mBAAmB,EACnB,cAAc,EACd,mBAAmB,EACnB,cAAc,GACf,MAAM,aAAa,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workflow/web-shared",
|
|
3
3
|
"description": "Shared components for Workflow Observability UI",
|
|
4
|
-
"version": "4.1.0-beta.
|
|
4
|
+
"version": "4.1.0-beta.49",
|
|
5
5
|
"private": false,
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"streamdown": "1.6.11",
|
|
50
50
|
"tailwind-merge": "2.5.5",
|
|
51
51
|
"tailwindcss": "4",
|
|
52
|
-
"@workflow/core": "4.1.0-beta.
|
|
52
|
+
"@workflow/core": "4.1.0-beta.54",
|
|
53
53
|
"@workflow/utils": "4.1.0-beta.11",
|
|
54
|
-
"@workflow/world": "4.1.0-beta.
|
|
54
|
+
"@workflow/world": "4.1.0-beta.3"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@biomejs/biome": "^2.2.7",
|
package/src/index.ts
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
|
+
export type {
|
|
2
|
+
HealthCheckEndpoint,
|
|
3
|
+
HealthCheckResult,
|
|
4
|
+
} from '@workflow/core/runtime';
|
|
1
5
|
export {
|
|
2
6
|
parseStepName,
|
|
3
7
|
parseWorkflowName,
|
|
4
8
|
} from '@workflow/utils/parse-name';
|
|
5
9
|
export type { Event, Hook, Step, WorkflowRun } from '@workflow/world';
|
|
6
|
-
|
|
10
|
+
export * from './components';
|
|
11
|
+
export {
|
|
12
|
+
hookEventsToHookEntity,
|
|
13
|
+
waitEventsToWaitEntity,
|
|
14
|
+
} from './components/workflow-traces/trace-span-construction';
|
|
7
15
|
export type { EventAnalysis } from './lib/event-analysis';
|
|
8
16
|
export {
|
|
9
17
|
analyzeEvents,
|
|
@@ -19,8 +27,3 @@ export {
|
|
|
19
27
|
identifyStreamSteps,
|
|
20
28
|
isDoStreamStep,
|
|
21
29
|
} from './lib/utils';
|
|
22
|
-
export * from './components';
|
|
23
|
-
export {
|
|
24
|
-
hookEventsToHookEntity,
|
|
25
|
-
waitEventsToWaitEntity,
|
|
26
|
-
} from './components/workflow-traces/trace-span-construction';
|