fix: metadata nullish

pull/9078/head
Agusti Fernandez Pardo 2022-05-17 22:03:26 +02:00
parent a70f80ff6d
commit f3271f7724
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();