@flipdish/events 1.80.1 → 1.80.3
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.
|
@@ -51,6 +51,7 @@ export const PriceSchema = z.object({
|
|
|
51
51
|
priceBandId: z.string().uuid(),
|
|
52
52
|
price: z.number(),
|
|
53
53
|
taxablePrice: z.number().nullable().optional(),
|
|
54
|
+
taxId: z.number(),
|
|
54
55
|
taxPercent: z.number(),
|
|
55
56
|
taxValue: z.number(),
|
|
56
57
|
taxable: z.boolean(),
|
|
@@ -159,6 +160,7 @@ export const MenuItemSchema = z.object({
|
|
|
159
160
|
price: PriceSchema,
|
|
160
161
|
charges: z.array(ChargeSchema).nullable().optional(),
|
|
161
162
|
cellLayoutType: z.string().nullable().optional(),
|
|
163
|
+
displayOrder: z.number(),
|
|
162
164
|
});
|
|
163
165
|
export const DispatchType = z.enum(['DineIn', 'TakeAway', 'Collection', 'Delivery']);
|
|
164
166
|
export const VenueCodes = z.enum([
|
|
@@ -64,6 +64,7 @@ export const PriceSchema = z.object({
|
|
|
64
64
|
priceBandId: z.string().uuid(),
|
|
65
65
|
price: z.number(),
|
|
66
66
|
taxablePrice: z.number().nullable().optional(),
|
|
67
|
+
taxId: z.number(),
|
|
67
68
|
taxPercent: z.number(),
|
|
68
69
|
taxValue: z.number(),
|
|
69
70
|
taxable: z.boolean(),
|
|
@@ -220,6 +221,7 @@ export const MenuItemSchema = z.object({
|
|
|
220
221
|
price: PriceSchema,
|
|
221
222
|
charges: z.array(ChargeSchema).nullable().optional(),
|
|
222
223
|
cellLayoutType: z.string().nullable().optional(),
|
|
224
|
+
displayOrder: z.number(),
|
|
223
225
|
});
|
|
224
226
|
|
|
225
227
|
export const DispatchType = z.enum(['DineIn', 'TakeAway', 'Collection', 'Delivery']);
|
package/package.json
CHANGED