Allow seatsPerTimeSlot and seatsShowAttendees in event type calls (#216)
This PR allows `seatsPerTimeSlot` and `seatsShowAttendees` in event type POST and PATCH calls
This commit is contained in:
@@ -56,6 +56,8 @@ const schemaEventTypeCreateParams = z
|
||||
length: z.number().int(),
|
||||
metadata: z.any().optional(),
|
||||
recurringEvent: recurringEventInputSchema.optional(),
|
||||
seatsPerTimeSlot: z.number().optional(),
|
||||
seatsShowAttendees: z.boolean().optional(),
|
||||
})
|
||||
.strict();
|
||||
|
||||
@@ -68,6 +70,8 @@ const schemaEventTypeEditParams = z
|
||||
title: z.string().optional(),
|
||||
slug: z.string().optional(),
|
||||
length: z.number().int().optional(),
|
||||
seatsPerTimeSlot: z.number().optional(),
|
||||
seatsShowAttendees: z.boolean().optional(),
|
||||
})
|
||||
.strict();
|
||||
|
||||
@@ -103,6 +107,8 @@ export const schemaEventTypeReadPublic = EventType.pick({
|
||||
description: true,
|
||||
locations: true,
|
||||
metadata: true,
|
||||
seatsPerTimeSlot: true,
|
||||
seatsShowAttendees: true,
|
||||
}).merge(
|
||||
z.object({
|
||||
locations: z
|
||||
|
||||
@@ -37,6 +37,7 @@ import { schemaEventTypeCreateBodyParams, schemaEventTypeReadPublic } from "~/li
|
||||
* slug:
|
||||
* type: string
|
||||
* example: my-event
|
||||
*
|
||||
* tags:
|
||||
* - event-types
|
||||
* externalDocs:
|
||||
|
||||
Reference in New Issue
Block a user