feat(697): Made new fields optional

This commit is contained in:
Pontus Dreij
2024-11-04 16:09:31 +01:00
parent 83c1178ba5
commit 04df824ea1
7 changed files with 29 additions and 22 deletions

View File

@@ -11,11 +11,13 @@ export const getRoomPackagesInputSchema = z.object({
packageCodes: z.array(z.string()).optional().default([]),
})
export const packagePriceSchema = z.object({
currency: z.string(),
price: z.string(),
totalPrice: z.string(),
})
export const packagePriceSchema = z
.object({
currency: z.string(),
price: z.string(),
totalPrice: z.string(),
})
.optional() // TODO: Remove optional when the API change has been deployed
export const packagesSchema = z.object({
code: z.nativeEnum(RoomPackageCodeEnum),