cal.pub0.org/packages/app-store/metapixel/zod.ts

11 lines
275 B
TypeScript
Raw Normal View History

import { z } from "zod";
import { eventTypeAppCardZod } from "@calcom/app-store/eventTypeAppCardZod";
export const appDataSchema = eventTypeAppCardZod.merge(
z.object({
trackingId: z.string().default("").optional(),
})
);
export const appKeysSchema = z.object({});