11 lines
319 B
TypeScript
11 lines
319 B
TypeScript
import { z } from "zod";
|
|
|
|
import { eventTypeAppCardZod } from "@calcom/app-store/eventTypeAppCardZod";
|
|
|
|
export const appDataSchema = eventTypeAppCardZod.merge(z.object({}));
|
|
export const appKeysSchema = z.object({
|
|
client_id: z.string().min(1),
|
|
client_secret: z.string().min(1),
|
|
user_agent: z.string().min(1),
|
|
});
|