diff --git a/packages/features/ee/managed-event-types/lib/handleChildrenEventTypes.ts b/packages/features/ee/managed-event-types/lib/handleChildrenEventTypes.ts index c7a1354c21..0a46bf5f40 100644 --- a/packages/features/ee/managed-event-types/lib/handleChildrenEventTypes.ts +++ b/packages/features/ee/managed-event-types/lib/handleChildrenEventTypes.ts @@ -7,7 +7,7 @@ import { getTranslation } from "@calcom/lib/server/i18n"; import type { PrismaClient } from "@calcom/prisma"; import { SchedulingType } from "@calcom/prisma/enums"; import { _EventTypeModel } from "@calcom/prisma/zod"; -import { EventTypeMetaDataSchema } from "@calcom/prisma/zod-utils"; +import { eventTypeMetaDataSchemaWithTypedApps } from "@calcom/prisma/zod-utils"; import { allManagedEventTypeProps, unlockedManagedEventTypeProps } from "@calcom/prisma/zod-utils"; interface handleChildrenEventTypesProps { @@ -240,7 +240,7 @@ export default async function handleChildrenEventTypes({ }, }); - const metadata = EventTypeMetaDataSchema.parse(existingEventType?.metadata || {}); + const metadata = eventTypeMetaDataSchemaWithTypedApps.parse(existingEventType?.metadata || {}); return await prisma.eventType.update({ where: {