@flipdish/events 1.25352.0 → 1.25364.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.
|
@@ -15,6 +15,7 @@ export const OnlineOrderingCommonPropertiesSchema = z.object({
|
|
|
15
15
|
menuRevisionId: z.number().int(),
|
|
16
16
|
legacyMenuId: z.number().int(),
|
|
17
17
|
referencePriceDispatchType: z.string(),
|
|
18
|
+
publishedAt: z.string().datetime(),
|
|
18
19
|
});
|
|
19
20
|
|
|
20
21
|
export type OnlineOrderingCommonProperties = z.infer<typeof OnlineOrderingCommonPropertiesSchema>;
|
|
@@ -347,12 +347,10 @@ export type OnlineOrderingMenuPreprocessSuccessItemPricingProfileV1 = z.infer<
|
|
|
347
347
|
typeof ItemPricingProfileSchema
|
|
348
348
|
>;
|
|
349
349
|
|
|
350
|
-
// Preprocess Success
|
|
351
350
|
export type OnlineOrderingMenuPreprocessSuccessV1 = z.infer<
|
|
352
351
|
typeof OnlineOrderingMenuPreprocessSuccessV1Schema
|
|
353
352
|
>;
|
|
354
353
|
|
|
355
|
-
// Preprocess Failed
|
|
356
354
|
export type OnlineOrderingMenuPreprocessFailedV1 = z.infer<
|
|
357
355
|
typeof OnlineOrderingMenuPreprocessFailedV1Schema
|
|
358
356
|
>;
|
package/package.json
CHANGED