@flipdish/events 1.26014.0 → 1.26015.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.
|
@@ -12,6 +12,7 @@ export const OnlineOrderingCommonPropertiesSchema = z.object({
|
|
|
12
12
|
publishId: z.string().uuid(),
|
|
13
13
|
menuRevisionId: z.number().int(),
|
|
14
14
|
legacyMenuId: z.number().int(),
|
|
15
|
+
hasConcessionStores: z.boolean().optional().nullable(), // optional for backwards compatibility
|
|
15
16
|
referencePriceDispatchType: z.string(),
|
|
16
17
|
publishedAt: z.string().datetime(),
|
|
17
18
|
});
|
|
@@ -14,6 +14,7 @@ export const OnlineOrderingCommonPropertiesSchema = z.object({
|
|
|
14
14
|
publishId: z.string().uuid(),
|
|
15
15
|
menuRevisionId: z.number().int(),
|
|
16
16
|
legacyMenuId: z.number().int(),
|
|
17
|
+
hasConcessionStores: z.boolean().optional().nullable(), // optional for backwards compatibility
|
|
17
18
|
referencePriceDispatchType: z.string(),
|
|
18
19
|
publishedAt: z.string().datetime(),
|
|
19
20
|
});
|
package/package.json
CHANGED