* feat: ✨ support for adding script url added for umami This will help self hosters in setting up umami. * feat: ✨ set default value for script URL in the form field --------- Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com>
13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
import { z } from "zod";
|
|
|
|
import { eventTypeAppCardZod } from "@calcom/app-store/eventTypeAppCardZod";
|
|
|
|
export const appDataSchema = eventTypeAppCardZod.merge(
|
|
z.object({
|
|
SITE_ID: z.string().optional(),
|
|
SCRIPT_URL: z.string().optional(),
|
|
})
|
|
);
|
|
|
|
export const appKeysSchema = z.object({});
|