fix: event type make locations metadata and recurringEvent nullable and optional
parent
c52045486d
commit
f55aaf3eaa
|
@ -39,9 +39,9 @@ const schemaEventTypeBaseParams = z
|
||||||
slug: z.string(),
|
slug: z.string(),
|
||||||
description: z.string().optional().nullable(),
|
description: z.string().optional().nullable(),
|
||||||
length: z.number().int(),
|
length: z.number().int(),
|
||||||
locations: jsonSchema,
|
locations: jsonSchema.optional().nullable().or(z.null()),
|
||||||
metadata: jsonSchema.optional().nullable().or(z.null()),
|
metadata: jsonSchema.optional().nullable().or(z.null()),
|
||||||
recurringEvent: jsonSchema,
|
recurringEvent: jsonSchema.optional().nullable().or(z.null()),
|
||||||
})
|
})
|
||||||
.strict();
|
.strict();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue