chore: bundle package

This commit is contained in:
Alex Yang
2025-04-24 08:57:35 -07:00
parent 452e1bac5a
commit 0fee991bba
2 changed files with 11 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@llama-flow/llamaindex": patch
---
fix: export more types from core
+6 -1
View File
@@ -10,7 +10,12 @@ import { until } from "@llama-flow/core/stream/until";
import { collect } from "@llama-flow/core/stream/consumer";
import { withStore } from "@llama-flow/core/middleware/store";
export { workflowEvent } from "@llama-flow/core";
export {
workflowEvent,
type WorkflowEventData,
type WorkflowEvent,
type InferWorkflowEventData,
} from "@llama-flow/core";
export type StepContext<T = unknown> = ReturnType<typeof getContext> & {
get data(): T;