cal.pub0.org/packages/app-store/eventTypeAppCardZod.ts

10 lines
282 B
TypeScript

// It's the shared zod for all EventType apps for their data in eventType.metadata.apps
import { z } from "zod";
export const eventTypeAppCardZod = z.object({
enabled: z.boolean().optional(),
credentialId: z.number().optional(),
});
export const appKeysSchema = z.object({});