Skip to content

Commit 7e7adfd

Browse files
committed
feat: export BaseEventSchema for external usage
1 parent abe051e commit 7e7adfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typescript-sdk/packages/core/src/events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export enum EventType {
2828
STEP_FINISHED = "STEP_FINISHED",
2929
}
3030

31-
const BaseEventSchema = z.object({
31+
export const BaseEventSchema = z.object({
3232
type: z.nativeEnum(EventType),
3333
timestamp: z.number().optional(),
3434
rawEvent: z.any().optional(),

0 commit comments

Comments
 (0)