2
0
Files
bot/packages/schemas/features/events/shared.ts
Baptiste Arnaud 35300eaf34 ♻️ Introduce typebot v6 with events (#1013)
Closes #885
2023-11-08 15:34:16 +01:00

11 lines
204 B
TypeScript

import { z } from 'zod'
export const eventBaseSchema = z.object({
id: z.string(),
outgoingEdgeId: z.string().optional(),
graphCoordinates: z.object({
x: z.number(),
y: z.number(),
}),
})