Fixing prettier

This commit is contained in:
Syed Ali Shahbaz
2022-05-26 12:16:51 +05:30
committed by GitHub
parent 5e3b51c621
commit 316c5a1266
+3 -4
View File
@@ -1,8 +1,9 @@
import { z } from "zod";
import { _WebhookModel as Webhook } from "@calcom/prisma/zod";
import { WebhookTriggerEvents } from "@calcom/prisma/client";
import { _WebhookModel as Webhook } from "@calcom/prisma/zod";
export const WEBHOOK_TRIGGER_EVENTS = [
WebhookTriggerEvents.BOOKING_CANCELLED,
WebhookTriggerEvents.BOOKING_CREATED,
@@ -31,9 +32,7 @@ export const schemaWebhookCreateParams = z
})
.strict();
export const schemaWebhookCreateBodyParams = schemaWebhookBaseBodyParams.merge(
schemaWebhookCreateParams
);
export const schemaWebhookCreateBodyParams = schemaWebhookBaseBodyParams.merge(schemaWebhookCreateParams);
export const schemaWebhookEditBodyParams = schemaWebhookBaseBodyParams.merge(
z.object({