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:
Joe Au-Yeung
2022-12-15 15:36:09 -07:00
committed by GitHub
parent c129586336
commit 5d892df019
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -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
+1
View File
@@ -37,6 +37,7 @@ import { schemaEventTypeCreateBodyParams, schemaEventTypeReadPublic } from "~/li
* slug:
* type: string
* example: my-event
*
* tags:
* - event-types
* externalDocs: