@flipdish/events 1.26009.0 → 1.26012.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flipdish/events",
3
- "version": "1.26009.0",
3
+ "version": "1.26012.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --max-old-space-size=4096 --max-semi-space-size=512 ./node_modules/.bin/jest --config=jest.config.ts --verbose",
@@ -117,8 +117,8 @@ 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',
120
+ isTaxInclusive: z.boolean().nullable().optional().openapi({
121
+ description: 'Whether the menu is tax inclusive',
122
122
  example: false,
123
123
  }),
124
124
  categories: z.array(CategorySchemas.EventCategorySchema).nullable().openapi({
@@ -124,8 +124,8 @@ 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',
127
+ isTaxInclusive: z.boolean().nullable().optional().openapi({
128
+ description: 'Whether the menu is tax inclusive',
129
129
  example: false,
130
130
  }),
131
131
  categories: z.array(CategorySchemas.EventCategorySchema).nullable().openapi({