@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.
@@ -13,4 +13,5 @@ export const OnlineOrderingCommonPropertiesSchema = z.object({
13
13
  menuRevisionId: z.number().int(),
14
14
  legacyMenuId: z.number().int(),
15
15
  referencePriceDispatchType: z.string(),
16
+ publishedAt: z.string().datetime(),
16
17
  });
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flipdish/events",
3
- "version": "1.25352.0",
3
+ "version": "1.25364.0",
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",