cal/packages/app-store/eventTypeAppCardZod.ts
Hariom Balhara d4c5a906b5
App Store Templates (#5289)
* Start by moving what we have to _templates

* WIP

* WIP

* Add create/edit/delete template commands

* Type fixes cli

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: zomars <zomars@me.com>
2023-01-18 15:30:25 -07:00

9 lines
243 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(),
});
export const appKeysSchema = z.object({});