@flipdish/events 1.26008.0 → 1.26012.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -117,6 +117,10 @@ export const PublicMenuSchema = BaseMenuSchema.merge(AutoGeneratedMenuFieldsSche
|
|
|
117
117
|
});
|
|
118
118
|
export const EventMenuSchema = BaseMenuSchema.merge(AutoGeneratedMenuFieldsSchema)
|
|
119
119
|
.extend({
|
|
120
|
+
isVatInclusive: z.boolean().nullable().optional().openapi({
|
|
121
|
+
description: 'Whether the menu is VAT inclusive',
|
|
122
|
+
example: false,
|
|
123
|
+
}),
|
|
120
124
|
categories: z.array(CategorySchemas.EventCategorySchema).nullable().openapi({
|
|
121
125
|
description: 'Categories for the menu',
|
|
122
126
|
example: [],
|
|
@@ -124,6 +124,10 @@ export const PublicMenuSchema = BaseMenuSchema.merge(AutoGeneratedMenuFieldsSche
|
|
|
124
124
|
|
|
125
125
|
export const EventMenuSchema = BaseMenuSchema.merge(AutoGeneratedMenuFieldsSchema)
|
|
126
126
|
.extend({
|
|
127
|
+
isVatInclusive: z.boolean().nullable().optional().openapi({
|
|
128
|
+
description: 'Whether the menu is VAT inclusive',
|
|
129
|
+
example: false,
|
|
130
|
+
}),
|
|
127
131
|
categories: z.array(CategorySchemas.EventCategorySchema).nullable().openapi({
|
|
128
132
|
description: 'Categories for the menu',
|
|
129
133
|
example: [],
|