Allow booking responses to have the data from variantsConfig (#8718)

This commit is contained in:
Hariom Balhara 2023-05-10 09:29:51 +05:30 committed by GitHub
parent d6fb0df64f
commit b08a62d30b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,8 @@ export const bookingResponse = z.union([
optionValue: z.string(),
value: z.string(),
}),
// For variantsConfig case
z.record(z.string()),
]);
export const bookingResponsesDbSchema = z.record(bookingResponse);