@feedmepos/mf-order-setting 0.0.48 → 0.0.50

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.
Files changed (71) hide show
  1. package/dist/{KioskDevicesView-iZTQ--DO.js → KioskDevicesView-u14hzPbE.js} +1 -1
  2. package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-DBgRDIoS.js +501 -0
  3. package/dist/{KioskSettingView-mN7UPNYu.js → KioskSettingView-DmvtZcV1.js} +34 -33
  4. package/dist/KioskView-M8V91gD5.js +474 -0
  5. package/dist/{OrderSettingsView-B5Nq_u9Z.js → OrderSettingsView-Bl3LshG3.js} +15016 -14688
  6. package/dist/{app-B3KtJhiw.js → app-CLewMjcd.js} +89 -25
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-GjkM9dM2.js → dayjs.min-DCTYRWyD.js} +1 -1
  9. package/dist/frontend/mf-order/src/api/restaurant-setting/index.d.ts +2 -1
  10. package/dist/frontend/mf-order/src/app.d.ts +64 -0
  11. package/dist/frontend/mf-order/src/main.d.ts +64 -0
  12. package/dist/frontend/mf-order/src/modules/kiosk/interface.d.ts +1 -0
  13. package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +3 -0
  14. package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +1 -0
  15. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +5 -2
  16. package/dist/frontend/mf-order/src/views/kiosk/devices/KioskDevicesView.vue.d.ts +6 -3
  17. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +8 -0
  18. package/dist/frontend/mf-order/src/views/order-settings/drive-thru/DriveThruSetting.vue.d.ts +2 -0
  19. package/dist/frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeRule.vue.d.ts +2 -2
  20. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  21. package/dist/{index-Dwzta1U-.js → index-B7LtJeBJ.js} +2 -2
  22. package/dist/{menu.dto-DgPhiIVk.js → menu.dto-Co7iXHNr.js} +25558 -25019
  23. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +108 -16
  24. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +63 -18
  25. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +118 -18
  26. package/dist/package/entity/kiosk/kiosk.do.d.ts +32 -0
  27. package/dist/package/entity/kiosk/kiosk.dto.d.ts +44 -0
  28. package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1071 -0
  29. package/dist/package/entity/order/order-item/order-item.dto.d.ts +8 -0
  30. package/dist/package/entity/order/order.dto.d.ts +16 -8
  31. package/dist/package/entity/order/order.enum.d.ts +2 -0
  32. package/dist/package/entity/order-platform/deliveroo/deliveroo-dto.d.ts +2 -2
  33. package/dist/package/entity/order-platform/deliveroo/deliveroo-setting.do.d.ts +2 -2
  34. package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +62 -0
  35. package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +178 -0
  36. package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +6 -0
  37. package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +6 -0
  38. package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.do.d.ts +4 -4
  39. package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.dto.d.ts +5 -5
  40. package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +15 -0
  41. package/dist/package/entity/order-platform/grabfood/grabfood-omni.do.d.ts +1834 -15
  42. package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +13 -13
  43. package/dist/package/entity/order-platform/grabfood/grabfood-settings.do.d.ts +5 -2
  44. package/dist/package/entity/order-platform/grabfood/grabfood-webhook.dto.d.ts +528 -805
  45. package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +14 -11
  46. package/dist/package/entity/order-platform/grabfood/grabfood.enum.d.ts +1 -1
  47. package/dist/package/entity/order-platform/order-platform.dto.d.ts +0 -20
  48. package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.do.d.ts +2 -2
  49. package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.dto.d.ts +2 -2
  50. package/dist/package/entity/queue/queue.do.d.ts +12 -0
  51. package/dist/package/entity/queue/queue.dto.d.ts +26 -6
  52. package/package.json +4 -4
  53. package/src/api/restaurant-setting/index.ts +6 -0
  54. package/src/locales/en-US.json +16 -0
  55. package/src/locales/ja-JP.json +16 -0
  56. package/src/locales/th-TH.json +16 -0
  57. package/src/locales/zh-CN.json +16 -0
  58. package/src/main.ts +2 -2
  59. package/src/modules/kiosk/interface.ts +1 -0
  60. package/src/stores/kiosk/mapper.ts +1 -0
  61. package/src/stores/restaurant/index.ts +6 -0
  62. package/src/views/kiosk/KioskSummary.vue +37 -31
  63. package/src/views/kiosk/KioskView.vue +4 -1
  64. package/src/views/kiosk/devices/KioskDeviceCard.vue +205 -89
  65. package/src/views/kiosk/devices/KioskDevicesView.vue +133 -17
  66. package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +8 -3
  67. package/src/views/order-settings/OrderSettingsView.vue +6 -1
  68. package/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue +22 -1
  69. package/src/views/order-settings/drive-thru/DriveThruSetting.vue +101 -0
  70. package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-CPDemTBj.js +0 -306
  71. package/dist/KioskView-NEpc7Ivb.js +0 -452
@@ -232,6 +232,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
232
232
  unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
233
233
  customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
234
234
  subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
235
+ shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
235
236
  }, "strip", z.ZodTypeAny, {
236
237
  unit?: string | null | undefined;
237
238
  categoryName?: string | null | undefined;
@@ -278,6 +279,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
278
279
  }[] | null | undefined;
279
280
  customAttributes?: Record<string, any> | null | undefined;
280
281
  subCategories?: string[] | null | undefined;
282
+ shelfLife?: number | null | undefined;
281
283
  code: string;
282
284
  name: string;
283
285
  price: {
@@ -331,6 +333,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
331
333
  }[] | null | undefined;
332
334
  customAttributes?: Record<string, any> | null | undefined;
333
335
  subCategories?: string[] | null | undefined;
336
+ shelfLife?: number | null | undefined;
334
337
  code: string;
335
338
  name: string;
336
339
  price: {
@@ -1169,6 +1172,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
1169
1172
  }[] | null | undefined;
1170
1173
  customAttributes?: Record<string, any> | null | undefined;
1171
1174
  subCategories?: string[] | null | undefined;
1175
+ shelfLife?: number | null | undefined;
1172
1176
  code: string;
1173
1177
  name: string;
1174
1178
  price: {
@@ -2071,6 +2075,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
2071
2075
  target: "PAYMENT";
2072
2076
  };
2073
2077
  success: boolean;
2078
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
2074
2079
  adjustment: {
2075
2080
  inclusive?: boolean | null | undefined;
2076
2081
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -2080,7 +2085,6 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
2080
2085
  };
2081
2086
  };
2082
2087
  referenceId: string;
2083
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
2084
2088
  }, {
2085
2089
  reason?: string | null | undefined;
2086
2090
  priority?: number | null | undefined;
@@ -2162,6 +2166,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
2162
2166
  target: "PAYMENT";
2163
2167
  };
2164
2168
  success: boolean;
2169
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
2165
2170
  adjustment: {
2166
2171
  inclusive?: boolean | null | undefined;
2167
2172
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -2171,7 +2176,6 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
2171
2176
  };
2172
2177
  };
2173
2178
  referenceId: string;
2174
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
2175
2179
  }>>>>;
2176
2180
  effectGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
2177
2181
  maxApplicableEffects: z.ZodNumber;
@@ -3286,10 +3290,13 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
3286
3290
  orderIds: string[];
3287
3291
  }>>>;
3288
3292
  driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3293
+ platform: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3289
3294
  licensePlate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3290
3295
  }, "strip", z.ZodTypeAny, {
3296
+ platform?: string | null | undefined;
3291
3297
  licensePlate?: string | null | undefined;
3292
3298
  }, {
3299
+ platform?: string | null | undefined;
3293
3300
  licensePlate?: string | null | undefined;
3294
3301
  }>>>;
3295
3302
  roundToNearest: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -4165,6 +4172,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
4165
4172
  target: "PAYMENT";
4166
4173
  };
4167
4174
  success: boolean;
4175
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
4168
4176
  adjustment: {
4169
4177
  inclusive?: boolean | null | undefined;
4170
4178
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -4174,7 +4182,6 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
4174
4182
  };
4175
4183
  };
4176
4184
  referenceId: string;
4177
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
4178
4185
  }> | null | undefined;
4179
4186
  effectGroups?: {
4180
4187
  maxApplicableEffects: number;
@@ -4346,6 +4353,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
4346
4353
  orderIds: string[];
4347
4354
  } | null | undefined;
4348
4355
  driveThru?: {
4356
+ platform?: string | null | undefined;
4349
4357
  licensePlate?: string | null | undefined;
4350
4358
  } | null | undefined;
4351
4359
  roundToNearest?: number | null | undefined;
@@ -4571,6 +4579,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
4571
4579
  }[] | null | undefined;
4572
4580
  customAttributes?: Record<string, any> | null | undefined;
4573
4581
  subCategories?: string[] | null | undefined;
4582
+ shelfLife?: number | null | undefined;
4574
4583
  code: string;
4575
4584
  name: string;
4576
4585
  price: {
@@ -5023,6 +5032,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
5023
5032
  target: "PAYMENT";
5024
5033
  };
5025
5034
  success: boolean;
5035
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
5026
5036
  adjustment: {
5027
5037
  inclusive?: boolean | null | undefined;
5028
5038
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -5032,7 +5042,6 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
5032
5042
  };
5033
5043
  };
5034
5044
  referenceId: string;
5035
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
5036
5045
  }> | null | undefined;
5037
5046
  effectGroups?: {
5038
5047
  maxApplicableEffects: number;
@@ -5204,6 +5213,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
5204
5213
  orderIds: string[];
5205
5214
  } | null | undefined;
5206
5215
  driveThru?: {
5216
+ platform?: string | null | undefined;
5207
5217
  licensePlate?: string | null | undefined;
5208
5218
  } | null | undefined;
5209
5219
  roundToNearest?: number | null | undefined;
@@ -5429,6 +5439,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
5429
5439
  }[] | null | undefined;
5430
5440
  customAttributes?: Record<string, any> | null | undefined;
5431
5441
  subCategories?: string[] | null | undefined;
5442
+ shelfLife?: number | null | undefined;
5432
5443
  code: string;
5433
5444
  name: string;
5434
5445
  price: {
@@ -5943,6 +5954,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
5943
5954
  target: "PAYMENT";
5944
5955
  };
5945
5956
  success: boolean;
5957
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
5946
5958
  adjustment: {
5947
5959
  inclusive?: boolean | null | undefined;
5948
5960
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -5952,7 +5964,6 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
5952
5964
  };
5953
5965
  };
5954
5966
  referenceId: string;
5955
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
5956
5967
  }> | null | undefined;
5957
5968
  effectGroups?: {
5958
5969
  maxApplicableEffects: number;
@@ -6124,6 +6135,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
6124
6135
  orderIds: string[];
6125
6136
  } | null | undefined;
6126
6137
  driveThru?: {
6138
+ platform?: string | null | undefined;
6127
6139
  licensePlate?: string | null | undefined;
6128
6140
  } | null | undefined;
6129
6141
  roundToNearest?: number | null | undefined;
@@ -6349,6 +6361,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
6349
6361
  }[] | null | undefined;
6350
6362
  customAttributes?: Record<string, any> | null | undefined;
6351
6363
  subCategories?: string[] | null | undefined;
6364
+ shelfLife?: number | null | undefined;
6352
6365
  code: string;
6353
6366
  name: string;
6354
6367
  price: {
@@ -6832,6 +6845,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
6832
6845
  target: "PAYMENT";
6833
6846
  };
6834
6847
  success: boolean;
6848
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
6835
6849
  adjustment: {
6836
6850
  inclusive?: boolean | null | undefined;
6837
6851
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -6841,7 +6855,6 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
6841
6855
  };
6842
6856
  };
6843
6857
  referenceId: string;
6844
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
6845
6858
  }> | null | undefined;
6846
6859
  effectGroups?: {
6847
6860
  maxApplicableEffects: number;
@@ -7013,6 +7026,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
7013
7026
  orderIds: string[];
7014
7027
  } | null | undefined;
7015
7028
  driveThru?: {
7029
+ platform?: string | null | undefined;
7016
7030
  licensePlate?: string | null | undefined;
7017
7031
  } | null | undefined;
7018
7032
  roundToNearest?: number | null | undefined;
@@ -7238,6 +7252,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
7238
7252
  }[] | null | undefined;
7239
7253
  customAttributes?: Record<string, any> | null | undefined;
7240
7254
  subCategories?: string[] | null | undefined;
7255
+ shelfLife?: number | null | undefined;
7241
7256
  code: string;
7242
7257
  name: string;
7243
7258
  price: {
@@ -7639,6 +7654,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
7639
7654
  unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7640
7655
  customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
7641
7656
  subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
7657
+ shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
7642
7658
  }, "strip", z.ZodTypeAny, {
7643
7659
  unit?: string | null | undefined;
7644
7660
  categoryName?: string | null | undefined;
@@ -7685,6 +7701,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
7685
7701
  }[] | null | undefined;
7686
7702
  customAttributes?: Record<string, any> | null | undefined;
7687
7703
  subCategories?: string[] | null | undefined;
7704
+ shelfLife?: number | null | undefined;
7688
7705
  code: string;
7689
7706
  name: string;
7690
7707
  price: {
@@ -7738,6 +7755,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
7738
7755
  }[] | null | undefined;
7739
7756
  customAttributes?: Record<string, any> | null | undefined;
7740
7757
  subCategories?: string[] | null | undefined;
7758
+ shelfLife?: number | null | undefined;
7741
7759
  code: string;
7742
7760
  name: string;
7743
7761
  price: {
@@ -8576,6 +8594,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
8576
8594
  }[] | null | undefined;
8577
8595
  customAttributes?: Record<string, any> | null | undefined;
8578
8596
  subCategories?: string[] | null | undefined;
8597
+ shelfLife?: number | null | undefined;
8579
8598
  code: string;
8580
8599
  name: string;
8581
8600
  price: {
@@ -9478,6 +9497,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
9478
9497
  target: "PAYMENT";
9479
9498
  };
9480
9499
  success: boolean;
9500
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
9481
9501
  adjustment: {
9482
9502
  inclusive?: boolean | null | undefined;
9483
9503
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -9487,7 +9507,6 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
9487
9507
  };
9488
9508
  };
9489
9509
  referenceId: string;
9490
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
9491
9510
  }, {
9492
9511
  reason?: string | null | undefined;
9493
9512
  priority?: number | null | undefined;
@@ -9569,6 +9588,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
9569
9588
  target: "PAYMENT";
9570
9589
  };
9571
9590
  success: boolean;
9591
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
9572
9592
  adjustment: {
9573
9593
  inclusive?: boolean | null | undefined;
9574
9594
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -9578,7 +9598,6 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
9578
9598
  };
9579
9599
  };
9580
9600
  referenceId: string;
9581
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
9582
9601
  }>>>>;
9583
9602
  effectGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
9584
9603
  maxApplicableEffects: z.ZodNumber;
@@ -10693,10 +10712,13 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
10693
10712
  orderIds: string[];
10694
10713
  }>>>;
10695
10714
  driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
10715
+ platform: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10696
10716
  licensePlate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10697
10717
  }, "strip", z.ZodTypeAny, {
10718
+ platform?: string | null | undefined;
10698
10719
  licensePlate?: string | null | undefined;
10699
10720
  }, {
10721
+ platform?: string | null | undefined;
10700
10722
  licensePlate?: string | null | undefined;
10701
10723
  }>>>;
10702
10724
  roundToNearest: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -11572,6 +11594,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
11572
11594
  target: "PAYMENT";
11573
11595
  };
11574
11596
  success: boolean;
11597
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
11575
11598
  adjustment: {
11576
11599
  inclusive?: boolean | null | undefined;
11577
11600
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -11581,7 +11604,6 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
11581
11604
  };
11582
11605
  };
11583
11606
  referenceId: string;
11584
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
11585
11607
  }> | null | undefined;
11586
11608
  effectGroups?: {
11587
11609
  maxApplicableEffects: number;
@@ -11753,6 +11775,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
11753
11775
  orderIds: string[];
11754
11776
  } | null | undefined;
11755
11777
  driveThru?: {
11778
+ platform?: string | null | undefined;
11756
11779
  licensePlate?: string | null | undefined;
11757
11780
  } | null | undefined;
11758
11781
  roundToNearest?: number | null | undefined;
@@ -11978,6 +12001,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
11978
12001
  }[] | null | undefined;
11979
12002
  customAttributes?: Record<string, any> | null | undefined;
11980
12003
  subCategories?: string[] | null | undefined;
12004
+ shelfLife?: number | null | undefined;
11981
12005
  code: string;
11982
12006
  name: string;
11983
12007
  price: {
@@ -12430,6 +12454,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
12430
12454
  target: "PAYMENT";
12431
12455
  };
12432
12456
  success: boolean;
12457
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
12433
12458
  adjustment: {
12434
12459
  inclusive?: boolean | null | undefined;
12435
12460
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -12439,7 +12464,6 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
12439
12464
  };
12440
12465
  };
12441
12466
  referenceId: string;
12442
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
12443
12467
  }> | null | undefined;
12444
12468
  effectGroups?: {
12445
12469
  maxApplicableEffects: number;
@@ -12611,6 +12635,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
12611
12635
  orderIds: string[];
12612
12636
  } | null | undefined;
12613
12637
  driveThru?: {
12638
+ platform?: string | null | undefined;
12614
12639
  licensePlate?: string | null | undefined;
12615
12640
  } | null | undefined;
12616
12641
  roundToNearest?: number | null | undefined;
@@ -12836,6 +12861,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
12836
12861
  }[] | null | undefined;
12837
12862
  customAttributes?: Record<string, any> | null | undefined;
12838
12863
  subCategories?: string[] | null | undefined;
12864
+ shelfLife?: number | null | undefined;
12839
12865
  code: string;
12840
12866
  name: string;
12841
12867
  price: {
@@ -13350,6 +13376,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
13350
13376
  target: "PAYMENT";
13351
13377
  };
13352
13378
  success: boolean;
13379
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
13353
13380
  adjustment: {
13354
13381
  inclusive?: boolean | null | undefined;
13355
13382
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -13359,7 +13386,6 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
13359
13386
  };
13360
13387
  };
13361
13388
  referenceId: string;
13362
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
13363
13389
  }> | null | undefined;
13364
13390
  effectGroups?: {
13365
13391
  maxApplicableEffects: number;
@@ -13531,6 +13557,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
13531
13557
  orderIds: string[];
13532
13558
  } | null | undefined;
13533
13559
  driveThru?: {
13560
+ platform?: string | null | undefined;
13534
13561
  licensePlate?: string | null | undefined;
13535
13562
  } | null | undefined;
13536
13563
  roundToNearest?: number | null | undefined;
@@ -13756,6 +13783,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
13756
13783
  }[] | null | undefined;
13757
13784
  customAttributes?: Record<string, any> | null | undefined;
13758
13785
  subCategories?: string[] | null | undefined;
13786
+ shelfLife?: number | null | undefined;
13759
13787
  code: string;
13760
13788
  name: string;
13761
13789
  price: {
@@ -14239,6 +14267,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
14239
14267
  target: "PAYMENT";
14240
14268
  };
14241
14269
  success: boolean;
14270
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
14242
14271
  adjustment: {
14243
14272
  inclusive?: boolean | null | undefined;
14244
14273
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -14248,7 +14277,6 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
14248
14277
  };
14249
14278
  };
14250
14279
  referenceId: string;
14251
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
14252
14280
  }> | null | undefined;
14253
14281
  effectGroups?: {
14254
14282
  maxApplicableEffects: number;
@@ -14420,6 +14448,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
14420
14448
  orderIds: string[];
14421
14449
  } | null | undefined;
14422
14450
  driveThru?: {
14451
+ platform?: string | null | undefined;
14423
14452
  licensePlate?: string | null | undefined;
14424
14453
  } | null | undefined;
14425
14454
  roundToNearest?: number | null | undefined;
@@ -14645,6 +14674,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
14645
14674
  }[] | null | undefined;
14646
14675
  customAttributes?: Record<string, any> | null | undefined;
14647
14676
  subCategories?: string[] | null | undefined;
14677
+ shelfLife?: number | null | undefined;
14648
14678
  code: string;
14649
14679
  name: string;
14650
14680
  price: {
@@ -15046,6 +15076,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
15046
15076
  unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
15047
15077
  customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
15048
15078
  subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
15079
+ shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
15049
15080
  }, "strip", z.ZodTypeAny, {
15050
15081
  unit?: string | null | undefined;
15051
15082
  categoryName?: string | null | undefined;
@@ -15092,6 +15123,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
15092
15123
  }[] | null | undefined;
15093
15124
  customAttributes?: Record<string, any> | null | undefined;
15094
15125
  subCategories?: string[] | null | undefined;
15126
+ shelfLife?: number | null | undefined;
15095
15127
  code: string;
15096
15128
  name: string;
15097
15129
  price: {
@@ -15145,6 +15177,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
15145
15177
  }[] | null | undefined;
15146
15178
  customAttributes?: Record<string, any> | null | undefined;
15147
15179
  subCategories?: string[] | null | undefined;
15180
+ shelfLife?: number | null | undefined;
15148
15181
  code: string;
15149
15182
  name: string;
15150
15183
  price: {
@@ -15983,6 +16016,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
15983
16016
  }[] | null | undefined;
15984
16017
  customAttributes?: Record<string, any> | null | undefined;
15985
16018
  subCategories?: string[] | null | undefined;
16019
+ shelfLife?: number | null | undefined;
15986
16020
  code: string;
15987
16021
  name: string;
15988
16022
  price: {
@@ -16885,6 +16919,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
16885
16919
  target: "PAYMENT";
16886
16920
  };
16887
16921
  success: boolean;
16922
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
16888
16923
  adjustment: {
16889
16924
  inclusive?: boolean | null | undefined;
16890
16925
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -16894,7 +16929,6 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
16894
16929
  };
16895
16930
  };
16896
16931
  referenceId: string;
16897
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
16898
16932
  }, {
16899
16933
  reason?: string | null | undefined;
16900
16934
  priority?: number | null | undefined;
@@ -16976,6 +17010,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
16976
17010
  target: "PAYMENT";
16977
17011
  };
16978
17012
  success: boolean;
17013
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
16979
17014
  adjustment: {
16980
17015
  inclusive?: boolean | null | undefined;
16981
17016
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -16985,7 +17020,6 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
16985
17020
  };
16986
17021
  };
16987
17022
  referenceId: string;
16988
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
16989
17023
  }>>>>;
16990
17024
  effectGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
16991
17025
  maxApplicableEffects: z.ZodNumber;
@@ -18100,10 +18134,13 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
18100
18134
  orderIds: string[];
18101
18135
  }>>>;
18102
18136
  driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
18137
+ platform: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18103
18138
  licensePlate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18104
18139
  }, "strip", z.ZodTypeAny, {
18140
+ platform?: string | null | undefined;
18105
18141
  licensePlate?: string | null | undefined;
18106
18142
  }, {
18143
+ platform?: string | null | undefined;
18107
18144
  licensePlate?: string | null | undefined;
18108
18145
  }>>>;
18109
18146
  roundToNearest: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -18979,6 +19016,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
18979
19016
  target: "PAYMENT";
18980
19017
  };
18981
19018
  success: boolean;
19019
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
18982
19020
  adjustment: {
18983
19021
  inclusive?: boolean | null | undefined;
18984
19022
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -18988,7 +19026,6 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
18988
19026
  };
18989
19027
  };
18990
19028
  referenceId: string;
18991
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
18992
19029
  }> | null | undefined;
18993
19030
  effectGroups?: {
18994
19031
  maxApplicableEffects: number;
@@ -19160,6 +19197,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
19160
19197
  orderIds: string[];
19161
19198
  } | null | undefined;
19162
19199
  driveThru?: {
19200
+ platform?: string | null | undefined;
19163
19201
  licensePlate?: string | null | undefined;
19164
19202
  } | null | undefined;
19165
19203
  roundToNearest?: number | null | undefined;
@@ -19385,6 +19423,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
19385
19423
  }[] | null | undefined;
19386
19424
  customAttributes?: Record<string, any> | null | undefined;
19387
19425
  subCategories?: string[] | null | undefined;
19426
+ shelfLife?: number | null | undefined;
19388
19427
  code: string;
19389
19428
  name: string;
19390
19429
  price: {
@@ -19837,6 +19876,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
19837
19876
  target: "PAYMENT";
19838
19877
  };
19839
19878
  success: boolean;
19879
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
19840
19880
  adjustment: {
19841
19881
  inclusive?: boolean | null | undefined;
19842
19882
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -19846,7 +19886,6 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
19846
19886
  };
19847
19887
  };
19848
19888
  referenceId: string;
19849
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
19850
19889
  }> | null | undefined;
19851
19890
  effectGroups?: {
19852
19891
  maxApplicableEffects: number;
@@ -20018,6 +20057,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
20018
20057
  orderIds: string[];
20019
20058
  } | null | undefined;
20020
20059
  driveThru?: {
20060
+ platform?: string | null | undefined;
20021
20061
  licensePlate?: string | null | undefined;
20022
20062
  } | null | undefined;
20023
20063
  roundToNearest?: number | null | undefined;
@@ -20243,6 +20283,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
20243
20283
  }[] | null | undefined;
20244
20284
  customAttributes?: Record<string, any> | null | undefined;
20245
20285
  subCategories?: string[] | null | undefined;
20286
+ shelfLife?: number | null | undefined;
20246
20287
  code: string;
20247
20288
  name: string;
20248
20289
  price: {
@@ -20757,6 +20798,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
20757
20798
  target: "PAYMENT";
20758
20799
  };
20759
20800
  success: boolean;
20801
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
20760
20802
  adjustment: {
20761
20803
  inclusive?: boolean | null | undefined;
20762
20804
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -20766,7 +20808,6 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
20766
20808
  };
20767
20809
  };
20768
20810
  referenceId: string;
20769
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
20770
20811
  }> | null | undefined;
20771
20812
  effectGroups?: {
20772
20813
  maxApplicableEffects: number;
@@ -20938,6 +20979,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
20938
20979
  orderIds: string[];
20939
20980
  } | null | undefined;
20940
20981
  driveThru?: {
20982
+ platform?: string | null | undefined;
20941
20983
  licensePlate?: string | null | undefined;
20942
20984
  } | null | undefined;
20943
20985
  roundToNearest?: number | null | undefined;
@@ -21163,6 +21205,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
21163
21205
  }[] | null | undefined;
21164
21206
  customAttributes?: Record<string, any> | null | undefined;
21165
21207
  subCategories?: string[] | null | undefined;
21208
+ shelfLife?: number | null | undefined;
21166
21209
  code: string;
21167
21210
  name: string;
21168
21211
  price: {
@@ -21646,6 +21689,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
21646
21689
  target: "PAYMENT";
21647
21690
  };
21648
21691
  success: boolean;
21692
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
21649
21693
  adjustment: {
21650
21694
  inclusive?: boolean | null | undefined;
21651
21695
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -21655,7 +21699,6 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
21655
21699
  };
21656
21700
  };
21657
21701
  referenceId: string;
21658
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
21659
21702
  }> | null | undefined;
21660
21703
  effectGroups?: {
21661
21704
  maxApplicableEffects: number;
@@ -21827,6 +21870,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
21827
21870
  orderIds: string[];
21828
21871
  } | null | undefined;
21829
21872
  driveThru?: {
21873
+ platform?: string | null | undefined;
21830
21874
  licensePlate?: string | null | undefined;
21831
21875
  } | null | undefined;
21832
21876
  roundToNearest?: number | null | undefined;
@@ -22052,6 +22096,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
22052
22096
  }[] | null | undefined;
22053
22097
  customAttributes?: Record<string, any> | null | undefined;
22054
22098
  subCategories?: string[] | null | undefined;
22099
+ shelfLife?: number | null | undefined;
22055
22100
  code: string;
22056
22101
  name: string;
22057
22102
  price: {