Merge pull request #97 from calcom/hotfix/any-fix

Fixes any invocation
pull/9078/head
Syed Ali Shahbaz 2022-05-25 15:07:48 +05:30 committed by GitHub
commit 76b3f1ba3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export const schemaWebhookCreateParams = z
.object({
userId: z.number().or(z.string()).optional(),
eventTypeId: z.number().or(z.string()).optional(),
eventTriggers: z.any.optional(),
eventTriggers: z.any().optional(),
active: z.boolean().optional(),
subscriberUrl: z.string(),
payloadTemplate: z.string().optional(),