2
0
Files
2024-08-09 00:39:27 +02:00

13 lines
300 B
TypeScript

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