12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
import { eventTypeAppCardZod } from "@calcom/app-store/eventTypeAppCardZod";
|
||
|
|
||
|
export const appDataSchema = eventTypeAppCardZod.merge(
|
||
|
z.object({
|
||
|
trackingId: z.string(),
|
||
|
})
|
||
|
);
|
||
|
|
||
|
export const appKeysSchema = z.object({});
|