import { z } from "zod"; import { eventTypeAppCardZod } from "../eventTypeAppCardZod"; export const appDataSchema = eventTypeAppCardZod.merge( z.object({ thankYouPage: z.string().optional(), }) );