Merge pull request #77 from calcom/fix/remove-metadata-from-read

fix: metadata nullish
pull/9078/head
Agusti Fernandez Pardo 2022-05-17 22:04:24 +02:00 committed by GitHub
commit e76ebd64f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ const schemaEventTypeBaseParams = z
description: z.string().optional().nullable(),
length: z.number().int(),
locations: jsonSchema.optional().nullable().or(z.null()),
metadata: jsonSchema.optional().nullable().or(z.null()),
metadata: jsonSchema.optional().nullish(),
recurringEvent: jsonSchema.optional().nullable().or(z.null()),
})
.strict();