@feedmepos/mf-order-setting 0.0.35 → 0.0.37

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 (41) hide show
  1. package/dist/{KioskDevicesView-wPKewwAS.js → KioskDevicesView-D9PQ22G6.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-BCJPU2la.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BuwHk_0a.js} +2 -2
  3. package/dist/{KioskSettingView-CV54HpY2.js → KioskSettingView-C98iSa7q.js} +1 -1
  4. package/dist/{KioskView-B4mggCt0.js → KioskView-C6s4u6vt.js} +7 -7
  5. package/dist/{OrderSettingsView-Cp3aV3Ps.js → OrderSettingsView-DFB_C-VO.js} +6031 -5898
  6. package/dist/{app-DlQj6ZP0.js → app-86WCOyBO.js} +21 -9
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-C_sCJHuD.js → dayjs.min-BiuO1l2_.js} +1 -1
  9. package/dist/frontend/mf-order/src/app.d.ts +12 -0
  10. package/dist/frontend/mf-order/src/helpers/order-setting.d.ts +6 -0
  11. package/dist/frontend/mf-order/src/main.d.ts +12 -0
  12. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +27 -0
  13. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  14. package/dist/{index-Cvhc_ltu.js → index-DZKSDqn_.js} +2 -2
  15. package/dist/menu.dto-CT1XwUKO.js +127978 -0
  16. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +24 -24
  17. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +48 -48
  18. package/dist/package/entity/order/menu/menu.dto.d.ts +10 -0
  19. package/dist/package/entity/order/order-item/order-item.dto.d.ts +48 -48
  20. package/dist/package/entity/order/order.do.d.ts +20 -8
  21. package/dist/package/entity/order/order.dto.d.ts +280 -164
  22. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +33 -0
  23. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +18 -0
  24. package/dist/package/entity/order-setting/order-setting.do.d.ts +168 -0
  25. package/dist/package/entity/order-setting/order-setting.dto.d.ts +134 -0
  26. package/dist/package/entity/order-setting/queue/queue.do.d.ts +95 -1613
  27. package/dist/package/entity/order-setting/queue/queue.dto.d.ts +62 -110
  28. package/dist/package/entity/order-setting/sequence/sequence.do.d.ts +72 -0
  29. package/dist/package/entity/order-setting/sequence/sequence.dto.d.ts +101 -0
  30. package/dist/package/entity/queue/queue.do.d.ts +18 -6
  31. package/dist/package/entity/queue/queue.dto.d.ts +52 -38
  32. package/dist/package/entity/restaurant/restaurant.dto.d.ts +81 -17
  33. package/package.json +1 -1
  34. package/src/helpers/order-setting.ts +20 -0
  35. package/src/locales/en-US.json +4 -0
  36. package/src/locales/th-TH.json +4 -0
  37. package/src/locales/zh-CN.json +4 -0
  38. package/src/stores/menu/menu.ts +1 -1
  39. package/src/stores/order-setting/mapper.ts +56 -56
  40. package/src/views/order-settings/general/GeneralSetting.vue +159 -4
  41. package/dist/menu.dto-CeUdKgTW.js +0 -103445
@@ -151,7 +151,9 @@ export declare const OrderPickupOptionDto: z.ZodObject<z.extendShape<{
151
151
  address: string;
152
152
  coordinates: number[];
153
153
  }>>>>;
154
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
154
155
  }>, "strip", z.ZodTypeAny, {
156
+ slot?: string | null | undefined;
155
157
  remark?: string | null | undefined;
156
158
  pickupPoint?: {
157
159
  name: string;
@@ -162,6 +164,7 @@ export declare const OrderPickupOptionDto: z.ZodObject<z.extendShape<{
162
164
  contactNumber: string;
163
165
  pickupAt: string;
164
166
  }, {
167
+ slot?: string | null | undefined;
165
168
  remark?: string | null | undefined;
166
169
  pickupPoint?: {
167
170
  name: string;
@@ -1060,7 +1063,9 @@ export declare const OrderDeliveryOptionDto: z.ZodObject<z.extendShape<{
1060
1063
  }>>>;
1061
1064
  deliveryAt: z.ZodString;
1062
1065
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1066
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1063
1067
  }>, "strip", z.ZodTypeAny, {
1068
+ slot?: string | null | undefined;
1064
1069
  providers?: ({
1065
1070
  instruction?: string | null | undefined;
1066
1071
  driver?: {
@@ -1255,6 +1260,7 @@ export declare const OrderDeliveryOptionDto: z.ZodObject<z.extendShape<{
1255
1260
  contactNumber: string;
1256
1261
  deliveryAt: string;
1257
1262
  }, {
1263
+ slot?: string | null | undefined;
1258
1264
  providers?: ({
1259
1265
  instruction?: string | null | undefined;
1260
1266
  driver?: {
@@ -1569,7 +1575,9 @@ export declare const OrderOptionDto: z.ZodDiscriminatedUnion<"type", z.Primitive
1569
1575
  address: string;
1570
1576
  coordinates: number[];
1571
1577
  }>>>>;
1578
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1572
1579
  }>, "strip", z.ZodTypeAny, {
1580
+ slot?: string | null | undefined;
1573
1581
  remark?: string | null | undefined;
1574
1582
  pickupPoint?: {
1575
1583
  name: string;
@@ -1580,6 +1588,7 @@ export declare const OrderOptionDto: z.ZodDiscriminatedUnion<"type", z.Primitive
1580
1588
  contactNumber: string;
1581
1589
  pickupAt: string;
1582
1590
  }, {
1591
+ slot?: string | null | undefined;
1583
1592
  remark?: string | null | undefined;
1584
1593
  pickupPoint?: {
1585
1594
  name: string;
@@ -2477,7 +2486,9 @@ export declare const OrderOptionDto: z.ZodDiscriminatedUnion<"type", z.Primitive
2477
2486
  }>>>;
2478
2487
  deliveryAt: z.ZodString;
2479
2488
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2489
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2480
2490
  }>, "strip", z.ZodTypeAny, {
2491
+ slot?: string | null | undefined;
2481
2492
  providers?: ({
2482
2493
  instruction?: string | null | undefined;
2483
2494
  driver?: {
@@ -2672,6 +2683,7 @@ export declare const OrderOptionDto: z.ZodDiscriminatedUnion<"type", z.Primitive
2672
2683
  contactNumber: string;
2673
2684
  deliveryAt: string;
2674
2685
  }, {
2686
+ slot?: string | null | undefined;
2675
2687
  providers?: ({
2676
2688
  instruction?: string | null | undefined;
2677
2689
  driver?: {
@@ -2904,7 +2916,9 @@ export declare const OrderOptionPosDto: z.ZodDiscriminatedUnion<"type", z.Primit
2904
2916
  address: string;
2905
2917
  coordinates: number[];
2906
2918
  }>>>>;
2919
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2907
2920
  }>, "strip", z.ZodTypeAny, {
2921
+ slot?: string | null | undefined;
2908
2922
  remark?: string | null | undefined;
2909
2923
  pickupPoint?: {
2910
2924
  name: string;
@@ -2915,6 +2929,7 @@ export declare const OrderOptionPosDto: z.ZodDiscriminatedUnion<"type", z.Primit
2915
2929
  contactNumber: string;
2916
2930
  pickupAt: string;
2917
2931
  }, {
2932
+ slot?: string | null | undefined;
2918
2933
  remark?: string | null | undefined;
2919
2934
  pickupPoint?: {
2920
2935
  name: string;
@@ -3812,7 +3827,9 @@ export declare const OrderOptionPosDto: z.ZodDiscriminatedUnion<"type", z.Primit
3812
3827
  }>>>;
3813
3828
  deliveryAt: z.ZodString;
3814
3829
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3830
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3815
3831
  }>, "strip", z.ZodTypeAny, {
3832
+ slot?: string | null | undefined;
3816
3833
  providers?: ({
3817
3834
  instruction?: string | null | undefined;
3818
3835
  driver?: {
@@ -4007,6 +4024,7 @@ export declare const OrderOptionPosDto: z.ZodDiscriminatedUnion<"type", z.Primit
4007
4024
  contactNumber: string;
4008
4025
  deliveryAt: string;
4009
4026
  }, {
4027
+ slot?: string | null | undefined;
4010
4028
  providers?: ({
4011
4029
  instruction?: string | null | undefined;
4012
4030
  driver?: {
@@ -4695,16 +4713,16 @@ export declare const OrderUpdateDto: z.ZodObject<{
4695
4713
  }, "strip", z.ZodTypeAny, {
4696
4714
  id?: string | null | undefined;
4697
4715
  remark?: string | null | undefined;
4698
- is?: {
4699
- delivery?: boolean | null | undefined;
4700
- takeaway: boolean;
4701
- } | null | undefined;
4702
4716
  productId?: string | null | undefined;
4703
4717
  variantSelected?: {
4704
4718
  name: string[];
4705
4719
  combinationKey: string;
4706
4720
  } | null | undefined;
4707
4721
  upsellingId?: string | null | undefined;
4722
+ is?: {
4723
+ delivery?: boolean | null | undefined;
4724
+ takeaway: boolean;
4725
+ } | null | undefined;
4708
4726
  customer?: any;
4709
4727
  nettTotal?: {
4710
4728
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -4846,10 +4864,6 @@ export declare const OrderUpdateDto: z.ZodObject<{
4846
4864
  }, {
4847
4865
  id?: string | null | undefined;
4848
4866
  remark?: string | null | undefined;
4849
- is?: {
4850
- delivery?: boolean | null | undefined;
4851
- takeaway: boolean;
4852
- } | null | undefined;
4853
4867
  taxes?: Record<string, any> | undefined;
4854
4868
  productId?: string | null | undefined;
4855
4869
  variantSelected?: {
@@ -4857,6 +4871,10 @@ export declare const OrderUpdateDto: z.ZodObject<{
4857
4871
  combinationKey: string;
4858
4872
  } | null | undefined;
4859
4873
  upsellingId?: string | null | undefined;
4874
+ is?: {
4875
+ delivery?: boolean | null | undefined;
4876
+ takeaway: boolean;
4877
+ } | null | undefined;
4860
4878
  customer?: any;
4861
4879
  adjustments?: Record<string, any> | undefined;
4862
4880
  nettTotal?: {
@@ -5120,7 +5138,9 @@ export declare const OrderUpdateDto: z.ZodObject<{
5120
5138
  address: string;
5121
5139
  coordinates: number[];
5122
5140
  }>>>>;
5141
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5123
5142
  }>, "strip", z.ZodTypeAny, {
5143
+ slot?: string | null | undefined;
5124
5144
  remark?: string | null | undefined;
5125
5145
  pickupPoint?: {
5126
5146
  name: string;
@@ -5131,6 +5151,7 @@ export declare const OrderUpdateDto: z.ZodObject<{
5131
5151
  contactNumber: string;
5132
5152
  pickupAt: string;
5133
5153
  }, {
5154
+ slot?: string | null | undefined;
5134
5155
  remark?: string | null | undefined;
5135
5156
  pickupPoint?: {
5136
5157
  name: string;
@@ -6028,7 +6049,9 @@ export declare const OrderUpdateDto: z.ZodObject<{
6028
6049
  }>>>;
6029
6050
  deliveryAt: z.ZodString;
6030
6051
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6052
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6031
6053
  }>, "strip", z.ZodTypeAny, {
6054
+ slot?: string | null | undefined;
6032
6055
  providers?: ({
6033
6056
  instruction?: string | null | undefined;
6034
6057
  driver?: {
@@ -6223,6 +6246,7 @@ export declare const OrderUpdateDto: z.ZodObject<{
6223
6246
  contactNumber: string;
6224
6247
  deliveryAt: string;
6225
6248
  }, {
6249
+ slot?: string | null | undefined;
6226
6250
  providers?: ({
6227
6251
  instruction?: string | null | undefined;
6228
6252
  driver?: {
@@ -9250,6 +9274,7 @@ export declare const OrderUpdateDto: z.ZodObject<{
9250
9274
  };
9251
9275
  type: "DINE_IN";
9252
9276
  } | {
9277
+ slot?: string | null | undefined;
9253
9278
  remark?: string | null | undefined;
9254
9279
  pickupPoint?: {
9255
9280
  name: string;
@@ -9260,6 +9285,7 @@ export declare const OrderUpdateDto: z.ZodObject<{
9260
9285
  contactNumber: string;
9261
9286
  pickupAt: string;
9262
9287
  } | {
9288
+ slot?: string | null | undefined;
9263
9289
  providers?: ({
9264
9290
  instruction?: string | null | undefined;
9265
9291
  driver?: {
@@ -9457,16 +9483,16 @@ export declare const OrderUpdateDto: z.ZodObject<{
9457
9483
  draft: {
9458
9484
  id?: string | null | undefined;
9459
9485
  remark?: string | null | undefined;
9460
- is?: {
9461
- delivery?: boolean | null | undefined;
9462
- takeaway: boolean;
9463
- } | null | undefined;
9464
9486
  productId?: string | null | undefined;
9465
9487
  variantSelected?: {
9466
9488
  name: string[];
9467
9489
  combinationKey: string;
9468
9490
  } | null | undefined;
9469
9491
  upsellingId?: string | null | undefined;
9492
+ is?: {
9493
+ delivery?: boolean | null | undefined;
9494
+ takeaway: boolean;
9495
+ } | null | undefined;
9470
9496
  customer?: any;
9471
9497
  nettTotal?: {
9472
9498
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -9619,10 +9645,6 @@ export declare const OrderUpdateDto: z.ZodObject<{
9619
9645
  draft?: {
9620
9646
  id?: string | null | undefined;
9621
9647
  remark?: string | null | undefined;
9622
- is?: {
9623
- delivery?: boolean | null | undefined;
9624
- takeaway: boolean;
9625
- } | null | undefined;
9626
9648
  taxes?: Record<string, any> | undefined;
9627
9649
  productId?: string | null | undefined;
9628
9650
  variantSelected?: {
@@ -9630,6 +9652,10 @@ export declare const OrderUpdateDto: z.ZodObject<{
9630
9652
  combinationKey: string;
9631
9653
  } | null | undefined;
9632
9654
  upsellingId?: string | null | undefined;
9655
+ is?: {
9656
+ delivery?: boolean | null | undefined;
9657
+ takeaway: boolean;
9658
+ } | null | undefined;
9633
9659
  customer?: any;
9634
9660
  adjustments?: Record<string, any> | undefined;
9635
9661
  nettTotal?: {
@@ -9814,6 +9840,7 @@ export declare const OrderUpdateDto: z.ZodObject<{
9814
9840
  };
9815
9841
  type: "DINE_IN";
9816
9842
  } | {
9843
+ slot?: string | null | undefined;
9817
9844
  remark?: string | null | undefined;
9818
9845
  pickupPoint?: {
9819
9846
  name: string;
@@ -9824,6 +9851,7 @@ export declare const OrderUpdateDto: z.ZodObject<{
9824
9851
  contactNumber: string;
9825
9852
  pickupAt: string;
9826
9853
  } | {
9854
+ slot?: string | null | undefined;
9827
9855
  providers?: ({
9828
9856
  instruction?: string | null | undefined;
9829
9857
  driver?: {
@@ -10401,16 +10429,16 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
10401
10429
  }, "strip", z.ZodTypeAny, {
10402
10430
  id?: string | null | undefined;
10403
10431
  remark?: string | null | undefined;
10404
- is?: {
10405
- delivery?: boolean | null | undefined;
10406
- takeaway: boolean;
10407
- } | null | undefined;
10408
10432
  productId?: string | null | undefined;
10409
10433
  variantSelected?: {
10410
10434
  name: string[];
10411
10435
  combinationKey: string;
10412
10436
  } | null | undefined;
10413
10437
  upsellingId?: string | null | undefined;
10438
+ is?: {
10439
+ delivery?: boolean | null | undefined;
10440
+ takeaway: boolean;
10441
+ } | null | undefined;
10414
10442
  customer?: any;
10415
10443
  nettTotal?: {
10416
10444
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -10552,10 +10580,6 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
10552
10580
  }, {
10553
10581
  id?: string | null | undefined;
10554
10582
  remark?: string | null | undefined;
10555
- is?: {
10556
- delivery?: boolean | null | undefined;
10557
- takeaway: boolean;
10558
- } | null | undefined;
10559
10583
  taxes?: Record<string, any> | undefined;
10560
10584
  productId?: string | null | undefined;
10561
10585
  variantSelected?: {
@@ -10563,6 +10587,10 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
10563
10587
  combinationKey: string;
10564
10588
  } | null | undefined;
10565
10589
  upsellingId?: string | null | undefined;
10590
+ is?: {
10591
+ delivery?: boolean | null | undefined;
10592
+ takeaway: boolean;
10593
+ } | null | undefined;
10566
10594
  customer?: any;
10567
10595
  adjustments?: Record<string, any> | undefined;
10568
10596
  nettTotal?: {
@@ -10826,7 +10854,9 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
10826
10854
  address: string;
10827
10855
  coordinates: number[];
10828
10856
  }>>>>;
10857
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10829
10858
  }>, "strip", z.ZodTypeAny, {
10859
+ slot?: string | null | undefined;
10830
10860
  remark?: string | null | undefined;
10831
10861
  pickupPoint?: {
10832
10862
  name: string;
@@ -10837,6 +10867,7 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
10837
10867
  contactNumber: string;
10838
10868
  pickupAt: string;
10839
10869
  }, {
10870
+ slot?: string | null | undefined;
10840
10871
  remark?: string | null | undefined;
10841
10872
  pickupPoint?: {
10842
10873
  name: string;
@@ -11734,7 +11765,9 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
11734
11765
  }>>>;
11735
11766
  deliveryAt: z.ZodString;
11736
11767
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11768
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11737
11769
  }>, "strip", z.ZodTypeAny, {
11770
+ slot?: string | null | undefined;
11738
11771
  providers?: ({
11739
11772
  instruction?: string | null | undefined;
11740
11773
  driver?: {
@@ -11929,6 +11962,7 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
11929
11962
  contactNumber: string;
11930
11963
  deliveryAt: string;
11931
11964
  }, {
11965
+ slot?: string | null | undefined;
11932
11966
  providers?: ({
11933
11967
  instruction?: string | null | undefined;
11934
11968
  driver?: {
@@ -14966,6 +15000,7 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
14966
15000
  };
14967
15001
  type: "DINE_IN";
14968
15002
  } | {
15003
+ slot?: string | null | undefined;
14969
15004
  remark?: string | null | undefined;
14970
15005
  pickupPoint?: {
14971
15006
  name: string;
@@ -14976,6 +15011,7 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
14976
15011
  contactNumber: string;
14977
15012
  pickupAt: string;
14978
15013
  } | {
15014
+ slot?: string | null | undefined;
14979
15015
  providers?: ({
14980
15016
  instruction?: string | null | undefined;
14981
15017
  driver?: {
@@ -15174,16 +15210,16 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
15174
15210
  draft: {
15175
15211
  id?: string | null | undefined;
15176
15212
  remark?: string | null | undefined;
15177
- is?: {
15178
- delivery?: boolean | null | undefined;
15179
- takeaway: boolean;
15180
- } | null | undefined;
15181
15213
  productId?: string | null | undefined;
15182
15214
  variantSelected?: {
15183
15215
  name: string[];
15184
15216
  combinationKey: string;
15185
15217
  } | null | undefined;
15186
15218
  upsellingId?: string | null | undefined;
15219
+ is?: {
15220
+ delivery?: boolean | null | undefined;
15221
+ takeaway: boolean;
15222
+ } | null | undefined;
15187
15223
  customer?: any;
15188
15224
  nettTotal?: {
15189
15225
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -15336,10 +15372,6 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
15336
15372
  draft?: {
15337
15373
  id?: string | null | undefined;
15338
15374
  remark?: string | null | undefined;
15339
- is?: {
15340
- delivery?: boolean | null | undefined;
15341
- takeaway: boolean;
15342
- } | null | undefined;
15343
15375
  taxes?: Record<string, any> | undefined;
15344
15376
  productId?: string | null | undefined;
15345
15377
  variantSelected?: {
@@ -15347,6 +15379,10 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
15347
15379
  combinationKey: string;
15348
15380
  } | null | undefined;
15349
15381
  upsellingId?: string | null | undefined;
15382
+ is?: {
15383
+ delivery?: boolean | null | undefined;
15384
+ takeaway: boolean;
15385
+ } | null | undefined;
15350
15386
  customer?: any;
15351
15387
  adjustments?: Record<string, any> | undefined;
15352
15388
  nettTotal?: {
@@ -15541,6 +15577,7 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
15541
15577
  };
15542
15578
  type: "DINE_IN";
15543
15579
  } | {
15580
+ slot?: string | null | undefined;
15544
15581
  remark?: string | null | undefined;
15545
15582
  pickupPoint?: {
15546
15583
  name: string;
@@ -15551,6 +15588,7 @@ export declare const OrderCreateDto: z.ZodObject<z.extendShape<{
15551
15588
  contactNumber: string;
15552
15589
  pickupAt: string;
15553
15590
  } | {
15591
+ slot?: string | null | undefined;
15554
15592
  providers?: ({
15555
15593
  instruction?: string | null | undefined;
15556
15594
  driver?: {
@@ -16135,16 +16173,16 @@ export declare const OrderDto: z.ZodObject<{
16135
16173
  }, "strip", z.ZodTypeAny, {
16136
16174
  id?: string | null | undefined;
16137
16175
  remark?: string | null | undefined;
16138
- is?: {
16139
- delivery?: boolean | null | undefined;
16140
- takeaway: boolean;
16141
- } | null | undefined;
16142
16176
  productId?: string | null | undefined;
16143
16177
  variantSelected?: {
16144
16178
  name: string[];
16145
16179
  combinationKey: string;
16146
16180
  } | null | undefined;
16147
16181
  upsellingId?: string | null | undefined;
16182
+ is?: {
16183
+ delivery?: boolean | null | undefined;
16184
+ takeaway: boolean;
16185
+ } | null | undefined;
16148
16186
  customer?: any;
16149
16187
  nettTotal?: {
16150
16188
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -16286,10 +16324,6 @@ export declare const OrderDto: z.ZodObject<{
16286
16324
  }, {
16287
16325
  id?: string | null | undefined;
16288
16326
  remark?: string | null | undefined;
16289
- is?: {
16290
- delivery?: boolean | null | undefined;
16291
- takeaway: boolean;
16292
- } | null | undefined;
16293
16327
  taxes?: Record<string, any> | undefined;
16294
16328
  productId?: string | null | undefined;
16295
16329
  variantSelected?: {
@@ -16297,6 +16331,10 @@ export declare const OrderDto: z.ZodObject<{
16297
16331
  combinationKey: string;
16298
16332
  } | null | undefined;
16299
16333
  upsellingId?: string | null | undefined;
16334
+ is?: {
16335
+ delivery?: boolean | null | undefined;
16336
+ takeaway: boolean;
16337
+ } | null | undefined;
16300
16338
  customer?: any;
16301
16339
  adjustments?: Record<string, any> | undefined;
16302
16340
  nettTotal?: {
@@ -21646,7 +21684,9 @@ export declare const OrderDto: z.ZodObject<{
21646
21684
  address: string;
21647
21685
  coordinates: number[];
21648
21686
  }>>>>;
21687
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21649
21688
  }>, "strip", z.ZodTypeAny, {
21689
+ slot?: string | null | undefined;
21650
21690
  remark?: string | null | undefined;
21651
21691
  pickupPoint?: {
21652
21692
  name: string;
@@ -21657,6 +21697,7 @@ export declare const OrderDto: z.ZodObject<{
21657
21697
  contactNumber: string;
21658
21698
  pickupAt: string;
21659
21699
  }, {
21700
+ slot?: string | null | undefined;
21660
21701
  remark?: string | null | undefined;
21661
21702
  pickupPoint?: {
21662
21703
  name: string;
@@ -22554,7 +22595,9 @@ export declare const OrderDto: z.ZodObject<{
22554
22595
  }>>>;
22555
22596
  deliveryAt: z.ZodString;
22556
22597
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
22598
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
22557
22599
  }>, "strip", z.ZodTypeAny, {
22600
+ slot?: string | null | undefined;
22558
22601
  providers?: ({
22559
22602
  instruction?: string | null | undefined;
22560
22603
  driver?: {
@@ -22749,6 +22792,7 @@ export declare const OrderDto: z.ZodObject<{
22749
22792
  contactNumber: string;
22750
22793
  deliveryAt: string;
22751
22794
  }, {
22795
+ slot?: string | null | undefined;
22752
22796
  providers?: ({
22753
22797
  instruction?: string | null | undefined;
22754
22798
  driver?: {
@@ -23589,6 +23633,7 @@ export declare const OrderDto: z.ZodObject<{
23589
23633
  };
23590
23634
  type: "DINE_IN";
23591
23635
  } | {
23636
+ slot?: string | null | undefined;
23592
23637
  remark?: string | null | undefined;
23593
23638
  pickupPoint?: {
23594
23639
  name: string;
@@ -23599,6 +23644,7 @@ export declare const OrderDto: z.ZodObject<{
23599
23644
  contactNumber: string;
23600
23645
  pickupAt: string;
23601
23646
  } | {
23647
+ slot?: string | null | undefined;
23602
23648
  providers?: ({
23603
23649
  instruction?: string | null | undefined;
23604
23650
  driver?: {
@@ -23799,16 +23845,16 @@ export declare const OrderDto: z.ZodObject<{
23799
23845
  draft: {
23800
23846
  id?: string | null | undefined;
23801
23847
  remark?: string | null | undefined;
23802
- is?: {
23803
- delivery?: boolean | null | undefined;
23804
- takeaway: boolean;
23805
- } | null | undefined;
23806
23848
  productId?: string | null | undefined;
23807
23849
  variantSelected?: {
23808
23850
  name: string[];
23809
23851
  combinationKey: string;
23810
23852
  } | null | undefined;
23811
23853
  upsellingId?: string | null | undefined;
23854
+ is?: {
23855
+ delivery?: boolean | null | undefined;
23856
+ takeaway: boolean;
23857
+ } | null | undefined;
23812
23858
  customer?: any;
23813
23859
  nettTotal?: {
23814
23860
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -24679,6 +24725,7 @@ export declare const OrderDto: z.ZodObject<{
24679
24725
  };
24680
24726
  type: "DINE_IN";
24681
24727
  } | {
24728
+ slot?: string | null | undefined;
24682
24729
  remark?: string | null | undefined;
24683
24730
  pickupPoint?: {
24684
24731
  name: string;
@@ -24689,6 +24736,7 @@ export declare const OrderDto: z.ZodObject<{
24689
24736
  contactNumber: string;
24690
24737
  pickupAt: string;
24691
24738
  } | {
24739
+ slot?: string | null | undefined;
24692
24740
  providers?: ({
24693
24741
  instruction?: string | null | undefined;
24694
24742
  driver?: {
@@ -24884,10 +24932,6 @@ export declare const OrderDto: z.ZodObject<{
24884
24932
  draft: {
24885
24933
  id?: string | null | undefined;
24886
24934
  remark?: string | null | undefined;
24887
- is?: {
24888
- delivery?: boolean | null | undefined;
24889
- takeaway: boolean;
24890
- } | null | undefined;
24891
24935
  taxes?: Record<string, any> | undefined;
24892
24936
  productId?: string | null | undefined;
24893
24937
  variantSelected?: {
@@ -24895,6 +24939,10 @@ export declare const OrderDto: z.ZodObject<{
24895
24939
  combinationKey: string;
24896
24940
  } | null | undefined;
24897
24941
  upsellingId?: string | null | undefined;
24942
+ is?: {
24943
+ delivery?: boolean | null | undefined;
24944
+ takeaway: boolean;
24945
+ } | null | undefined;
24898
24946
  customer?: any;
24899
24947
  adjustments?: Record<string, any> | undefined;
24900
24948
  nettTotal?: {
@@ -25394,16 +25442,16 @@ export declare const OrderKioskDto: z.ZodObject<{
25394
25442
  }, "strip", z.ZodTypeAny, {
25395
25443
  id?: string | null | undefined;
25396
25444
  remark?: string | null | undefined;
25397
- is?: {
25398
- delivery?: boolean | null | undefined;
25399
- takeaway: boolean;
25400
- } | null | undefined;
25401
25445
  productId?: string | null | undefined;
25402
25446
  variantSelected?: {
25403
25447
  name: string[];
25404
25448
  combinationKey: string;
25405
25449
  } | null | undefined;
25406
25450
  upsellingId?: string | null | undefined;
25451
+ is?: {
25452
+ delivery?: boolean | null | undefined;
25453
+ takeaway: boolean;
25454
+ } | null | undefined;
25407
25455
  customer?: any;
25408
25456
  nettTotal?: {
25409
25457
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -25545,10 +25593,6 @@ export declare const OrderKioskDto: z.ZodObject<{
25545
25593
  }, {
25546
25594
  id?: string | null | undefined;
25547
25595
  remark?: string | null | undefined;
25548
- is?: {
25549
- delivery?: boolean | null | undefined;
25550
- takeaway: boolean;
25551
- } | null | undefined;
25552
25596
  taxes?: Record<string, any> | undefined;
25553
25597
  productId?: string | null | undefined;
25554
25598
  variantSelected?: {
@@ -25556,6 +25600,10 @@ export declare const OrderKioskDto: z.ZodObject<{
25556
25600
  combinationKey: string;
25557
25601
  } | null | undefined;
25558
25602
  upsellingId?: string | null | undefined;
25603
+ is?: {
25604
+ delivery?: boolean | null | undefined;
25605
+ takeaway: boolean;
25606
+ } | null | undefined;
25559
25607
  customer?: any;
25560
25608
  adjustments?: Record<string, any> | undefined;
25561
25609
  nettTotal?: {
@@ -30915,7 +30963,9 @@ export declare const OrderKioskDto: z.ZodObject<{
30915
30963
  address: string;
30916
30964
  coordinates: number[];
30917
30965
  }>>>>;
30966
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
30918
30967
  }>, "strip", z.ZodTypeAny, {
30968
+ slot?: string | null | undefined;
30919
30969
  remark?: string | null | undefined;
30920
30970
  pickupPoint?: {
30921
30971
  name: string;
@@ -30926,6 +30976,7 @@ export declare const OrderKioskDto: z.ZodObject<{
30926
30976
  contactNumber: string;
30927
30977
  pickupAt: string;
30928
30978
  }, {
30979
+ slot?: string | null | undefined;
30929
30980
  remark?: string | null | undefined;
30930
30981
  pickupPoint?: {
30931
30982
  name: string;
@@ -31823,7 +31874,9 @@ export declare const OrderKioskDto: z.ZodObject<{
31823
31874
  }>>>;
31824
31875
  deliveryAt: z.ZodString;
31825
31876
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
31877
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
31826
31878
  }>, "strip", z.ZodTypeAny, {
31879
+ slot?: string | null | undefined;
31827
31880
  providers?: ({
31828
31881
  instruction?: string | null | undefined;
31829
31882
  driver?: {
@@ -32018,6 +32071,7 @@ export declare const OrderKioskDto: z.ZodObject<{
32018
32071
  contactNumber: string;
32019
32072
  deliveryAt: string;
32020
32073
  }, {
32074
+ slot?: string | null | undefined;
32021
32075
  providers?: ({
32022
32076
  instruction?: string | null | undefined;
32023
32077
  driver?: {
@@ -32860,6 +32914,7 @@ export declare const OrderKioskDto: z.ZodObject<{
32860
32914
  };
32861
32915
  type: "DINE_IN";
32862
32916
  } | {
32917
+ slot?: string | null | undefined;
32863
32918
  remark?: string | null | undefined;
32864
32919
  pickupPoint?: {
32865
32920
  name: string;
@@ -32870,6 +32925,7 @@ export declare const OrderKioskDto: z.ZodObject<{
32870
32925
  contactNumber: string;
32871
32926
  pickupAt: string;
32872
32927
  } | {
32928
+ slot?: string | null | undefined;
32873
32929
  providers?: ({
32874
32930
  instruction?: string | null | undefined;
32875
32931
  driver?: {
@@ -33070,16 +33126,16 @@ export declare const OrderKioskDto: z.ZodObject<{
33070
33126
  draft: {
33071
33127
  id?: string | null | undefined;
33072
33128
  remark?: string | null | undefined;
33073
- is?: {
33074
- delivery?: boolean | null | undefined;
33075
- takeaway: boolean;
33076
- } | null | undefined;
33077
33129
  productId?: string | null | undefined;
33078
33130
  variantSelected?: {
33079
33131
  name: string[];
33080
33132
  combinationKey: string;
33081
33133
  } | null | undefined;
33082
33134
  upsellingId?: string | null | undefined;
33135
+ is?: {
33136
+ delivery?: boolean | null | undefined;
33137
+ takeaway: boolean;
33138
+ } | null | undefined;
33083
33139
  customer?: any;
33084
33140
  nettTotal?: {
33085
33141
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -33952,6 +34008,7 @@ export declare const OrderKioskDto: z.ZodObject<{
33952
34008
  };
33953
34009
  type: "DINE_IN";
33954
34010
  } | {
34011
+ slot?: string | null | undefined;
33955
34012
  remark?: string | null | undefined;
33956
34013
  pickupPoint?: {
33957
34014
  name: string;
@@ -33962,6 +34019,7 @@ export declare const OrderKioskDto: z.ZodObject<{
33962
34019
  contactNumber: string;
33963
34020
  pickupAt: string;
33964
34021
  } | {
34022
+ slot?: string | null | undefined;
33965
34023
  providers?: ({
33966
34024
  instruction?: string | null | undefined;
33967
34025
  driver?: {
@@ -34157,10 +34215,6 @@ export declare const OrderKioskDto: z.ZodObject<{
34157
34215
  draft: {
34158
34216
  id?: string | null | undefined;
34159
34217
  remark?: string | null | undefined;
34160
- is?: {
34161
- delivery?: boolean | null | undefined;
34162
- takeaway: boolean;
34163
- } | null | undefined;
34164
34218
  taxes?: Record<string, any> | undefined;
34165
34219
  productId?: string | null | undefined;
34166
34220
  variantSelected?: {
@@ -34168,6 +34222,10 @@ export declare const OrderKioskDto: z.ZodObject<{
34168
34222
  combinationKey: string;
34169
34223
  } | null | undefined;
34170
34224
  upsellingId?: string | null | undefined;
34225
+ is?: {
34226
+ delivery?: boolean | null | undefined;
34227
+ takeaway: boolean;
34228
+ } | null | undefined;
34171
34229
  customer?: any;
34172
34230
  adjustments?: Record<string, any> | undefined;
34173
34231
  nettTotal?: {
@@ -34505,15 +34563,15 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
34505
34563
  }, "strip", z.ZodTypeAny, {
34506
34564
  id?: string | null | undefined;
34507
34565
  remark?: string | null | undefined;
34508
- is?: {
34509
- delivery?: boolean | null | undefined;
34510
- takeaway: boolean;
34511
- } | null | undefined;
34512
34566
  productId?: string | null | undefined;
34513
34567
  variantSelected?: {
34514
34568
  name: string[];
34515
34569
  combinationKey: string;
34516
34570
  } | null | undefined;
34571
+ is?: {
34572
+ delivery?: boolean | null | undefined;
34573
+ takeaway: boolean;
34574
+ } | null | undefined;
34517
34575
  quantity: number;
34518
34576
  product: {
34519
34577
  name: string;
@@ -34554,15 +34612,15 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
34554
34612
  }, {
34555
34613
  id?: string | null | undefined;
34556
34614
  remark?: string | null | undefined;
34557
- is?: {
34558
- delivery?: boolean | null | undefined;
34559
- takeaway: boolean;
34560
- } | null | undefined;
34561
34615
  productId?: string | null | undefined;
34562
34616
  variantSelected?: {
34563
34617
  name: string[];
34564
34618
  combinationKey: string;
34565
34619
  } | null | undefined;
34620
+ is?: {
34621
+ delivery?: boolean | null | undefined;
34622
+ takeaway: boolean;
34623
+ } | null | undefined;
34566
34624
  quantity: number;
34567
34625
  product: {
34568
34626
  name: string;
@@ -34648,7 +34706,9 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
34648
34706
  address: string;
34649
34707
  coordinates: number[];
34650
34708
  }>>>>;
34709
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
34651
34710
  }>, "strip", z.ZodTypeAny, {
34711
+ slot?: string | null | undefined;
34652
34712
  remark?: string | null | undefined;
34653
34713
  pickupPoint?: {
34654
34714
  name: string;
@@ -34659,6 +34719,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
34659
34719
  contactNumber: string;
34660
34720
  pickupAt: string;
34661
34721
  }, {
34722
+ slot?: string | null | undefined;
34662
34723
  remark?: string | null | undefined;
34663
34724
  pickupPoint?: {
34664
34725
  name: string;
@@ -35556,7 +35617,9 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
35556
35617
  }>>>;
35557
35618
  deliveryAt: z.ZodString;
35558
35619
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
35620
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
35559
35621
  }>, "strip", z.ZodTypeAny, {
35622
+ slot?: string | null | undefined;
35560
35623
  providers?: ({
35561
35624
  instruction?: string | null | undefined;
35562
35625
  driver?: {
@@ -35751,6 +35814,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
35751
35814
  contactNumber: string;
35752
35815
  deliveryAt: string;
35753
35816
  }, {
35817
+ slot?: string | null | undefined;
35754
35818
  providers?: ({
35755
35819
  instruction?: string | null | undefined;
35756
35820
  driver?: {
@@ -36392,6 +36456,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
36392
36456
  isTakeaway?: boolean | null | undefined;
36393
36457
  type: "DINE_IN";
36394
36458
  } | {
36459
+ slot?: string | null | undefined;
36395
36460
  remark?: string | null | undefined;
36396
36461
  pickupPoint?: {
36397
36462
  name: string;
@@ -36402,6 +36467,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
36402
36467
  contactNumber: string;
36403
36468
  pickupAt: string;
36404
36469
  } | {
36470
+ slot?: string | null | undefined;
36405
36471
  providers?: ({
36406
36472
  instruction?: string | null | undefined;
36407
36473
  driver?: {
@@ -36602,15 +36668,15 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
36602
36668
  draft: {
36603
36669
  id?: string | null | undefined;
36604
36670
  remark?: string | null | undefined;
36605
- is?: {
36606
- delivery?: boolean | null | undefined;
36607
- takeaway: boolean;
36608
- } | null | undefined;
36609
36671
  productId?: string | null | undefined;
36610
36672
  variantSelected?: {
36611
36673
  name: string[];
36612
36674
  combinationKey: string;
36613
36675
  } | null | undefined;
36676
+ is?: {
36677
+ delivery?: boolean | null | undefined;
36678
+ takeaway: boolean;
36679
+ } | null | undefined;
36614
36680
  quantity: number;
36615
36681
  product: {
36616
36682
  name: string;
@@ -36713,6 +36779,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
36713
36779
  isTakeaway?: boolean | null | undefined;
36714
36780
  type: "DINE_IN";
36715
36781
  } | {
36782
+ slot?: string | null | undefined;
36716
36783
  remark?: string | null | undefined;
36717
36784
  pickupPoint?: {
36718
36785
  name: string;
@@ -36723,6 +36790,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
36723
36790
  contactNumber: string;
36724
36791
  pickupAt: string;
36725
36792
  } | {
36793
+ slot?: string | null | undefined;
36726
36794
  providers?: ({
36727
36795
  instruction?: string | null | undefined;
36728
36796
  driver?: {
@@ -36918,15 +36986,15 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
36918
36986
  draft: {
36919
36987
  id?: string | null | undefined;
36920
36988
  remark?: string | null | undefined;
36921
- is?: {
36922
- delivery?: boolean | null | undefined;
36923
- takeaway: boolean;
36924
- } | null | undefined;
36925
36989
  productId?: string | null | undefined;
36926
36990
  variantSelected?: {
36927
36991
  name: string[];
36928
36992
  combinationKey: string;
36929
36993
  } | null | undefined;
36994
+ is?: {
36995
+ delivery?: boolean | null | undefined;
36996
+ takeaway: boolean;
36997
+ } | null | undefined;
36930
36998
  quantity: number;
36931
36999
  product: {
36932
37000
  name: string;
@@ -37042,6 +37110,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
37042
37110
  isTakeaway?: boolean | null | undefined;
37043
37111
  type: "DINE_IN";
37044
37112
  } | {
37113
+ slot?: string | null | undefined;
37045
37114
  remark?: string | null | undefined;
37046
37115
  pickupPoint?: {
37047
37116
  name: string;
@@ -37052,6 +37121,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
37052
37121
  contactNumber: string;
37053
37122
  pickupAt: string;
37054
37123
  } | {
37124
+ slot?: string | null | undefined;
37055
37125
  providers?: ({
37056
37126
  instruction?: string | null | undefined;
37057
37127
  driver?: {
@@ -37252,15 +37322,15 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
37252
37322
  draft: {
37253
37323
  id?: string | null | undefined;
37254
37324
  remark?: string | null | undefined;
37255
- is?: {
37256
- delivery?: boolean | null | undefined;
37257
- takeaway: boolean;
37258
- } | null | undefined;
37259
37325
  productId?: string | null | undefined;
37260
37326
  variantSelected?: {
37261
37327
  name: string[];
37262
37328
  combinationKey: string;
37263
37329
  } | null | undefined;
37330
+ is?: {
37331
+ delivery?: boolean | null | undefined;
37332
+ takeaway: boolean;
37333
+ } | null | undefined;
37264
37334
  quantity: number;
37265
37335
  product: {
37266
37336
  name: string;
@@ -37363,6 +37433,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
37363
37433
  isTakeaway?: boolean | null | undefined;
37364
37434
  type: "DINE_IN";
37365
37435
  } | {
37436
+ slot?: string | null | undefined;
37366
37437
  remark?: string | null | undefined;
37367
37438
  pickupPoint?: {
37368
37439
  name: string;
@@ -37373,6 +37444,7 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
37373
37444
  contactNumber: string;
37374
37445
  pickupAt: string;
37375
37446
  } | {
37447
+ slot?: string | null | undefined;
37376
37448
  providers?: ({
37377
37449
  instruction?: string | null | undefined;
37378
37450
  driver?: {
@@ -37568,15 +37640,15 @@ export declare const OrderPOSDto: z.ZodEffects<z.ZodObject<{
37568
37640
  draft: {
37569
37641
  id?: string | null | undefined;
37570
37642
  remark?: string | null | undefined;
37571
- is?: {
37572
- delivery?: boolean | null | undefined;
37573
- takeaway: boolean;
37574
- } | null | undefined;
37575
37643
  productId?: string | null | undefined;
37576
37644
  variantSelected?: {
37577
37645
  name: string[];
37578
37646
  combinationKey: string;
37579
37647
  } | null | undefined;
37648
+ is?: {
37649
+ delivery?: boolean | null | undefined;
37650
+ takeaway: boolean;
37651
+ } | null | undefined;
37580
37652
  quantity: number;
37581
37653
  product: {
37582
37654
  name: string;
@@ -37815,15 +37887,15 @@ export declare const OrderPOSGetDto: z.ZodObject<{
37815
37887
  }, "strip", z.ZodTypeAny, {
37816
37888
  id?: string | null | undefined;
37817
37889
  remark?: string | null | undefined;
37818
- is?: {
37819
- delivery?: boolean | null | undefined;
37820
- takeaway: boolean;
37821
- } | null | undefined;
37822
37890
  productId?: string | null | undefined;
37823
37891
  variantSelected?: {
37824
37892
  name: string[];
37825
37893
  combinationKey: string;
37826
37894
  } | null | undefined;
37895
+ is?: {
37896
+ delivery?: boolean | null | undefined;
37897
+ takeaway: boolean;
37898
+ } | null | undefined;
37827
37899
  quantity: number;
37828
37900
  product: {
37829
37901
  name: string;
@@ -37864,15 +37936,15 @@ export declare const OrderPOSGetDto: z.ZodObject<{
37864
37936
  }, {
37865
37937
  id?: string | null | undefined;
37866
37938
  remark?: string | null | undefined;
37867
- is?: {
37868
- delivery?: boolean | null | undefined;
37869
- takeaway: boolean;
37870
- } | null | undefined;
37871
37939
  productId?: string | null | undefined;
37872
37940
  variantSelected?: {
37873
37941
  name: string[];
37874
37942
  combinationKey: string;
37875
37943
  } | null | undefined;
37944
+ is?: {
37945
+ delivery?: boolean | null | undefined;
37946
+ takeaway: boolean;
37947
+ } | null | undefined;
37876
37948
  quantity: number;
37877
37949
  product: {
37878
37950
  name: string;
@@ -40801,7 +40873,9 @@ export declare const OrderPOSGetDto: z.ZodObject<{
40801
40873
  address: string;
40802
40874
  coordinates: number[];
40803
40875
  }>>>>;
40876
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
40804
40877
  }>, "strip", z.ZodTypeAny, {
40878
+ slot?: string | null | undefined;
40805
40879
  remark?: string | null | undefined;
40806
40880
  pickupPoint?: {
40807
40881
  name: string;
@@ -40812,6 +40886,7 @@ export declare const OrderPOSGetDto: z.ZodObject<{
40812
40886
  contactNumber: string;
40813
40887
  pickupAt: string;
40814
40888
  }, {
40889
+ slot?: string | null | undefined;
40815
40890
  remark?: string | null | undefined;
40816
40891
  pickupPoint?: {
40817
40892
  name: string;
@@ -41709,7 +41784,9 @@ export declare const OrderPOSGetDto: z.ZodObject<{
41709
41784
  }>>>;
41710
41785
  deliveryAt: z.ZodString;
41711
41786
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
41787
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
41712
41788
  }>, "strip", z.ZodTypeAny, {
41789
+ slot?: string | null | undefined;
41713
41790
  providers?: ({
41714
41791
  instruction?: string | null | undefined;
41715
41792
  driver?: {
@@ -41904,6 +41981,7 @@ export declare const OrderPOSGetDto: z.ZodObject<{
41904
41981
  contactNumber: string;
41905
41982
  deliveryAt: string;
41906
41983
  }, {
41984
+ slot?: string | null | undefined;
41907
41985
  providers?: ({
41908
41986
  instruction?: string | null | undefined;
41909
41987
  driver?: {
@@ -42543,6 +42621,7 @@ export declare const OrderPOSGetDto: z.ZodObject<{
42543
42621
  isTakeaway?: boolean | null | undefined;
42544
42622
  type: "DINE_IN";
42545
42623
  } | {
42624
+ slot?: string | null | undefined;
42546
42625
  remark?: string | null | undefined;
42547
42626
  pickupPoint?: {
42548
42627
  name: string;
@@ -42553,6 +42632,7 @@ export declare const OrderPOSGetDto: z.ZodObject<{
42553
42632
  contactNumber: string;
42554
42633
  pickupAt: string;
42555
42634
  } | {
42635
+ slot?: string | null | undefined;
42556
42636
  providers?: ({
42557
42637
  instruction?: string | null | undefined;
42558
42638
  driver?: {
@@ -43133,15 +43213,15 @@ export declare const OrderPOSGetDto: z.ZodObject<{
43133
43213
  draft: {
43134
43214
  id?: string | null | undefined;
43135
43215
  remark?: string | null | undefined;
43136
- is?: {
43137
- delivery?: boolean | null | undefined;
43138
- takeaway: boolean;
43139
- } | null | undefined;
43140
43216
  productId?: string | null | undefined;
43141
43217
  variantSelected?: {
43142
43218
  name: string[];
43143
43219
  combinationKey: string;
43144
43220
  } | null | undefined;
43221
+ is?: {
43222
+ delivery?: boolean | null | undefined;
43223
+ takeaway: boolean;
43224
+ } | null | undefined;
43145
43225
  quantity: number;
43146
43226
  product: {
43147
43227
  name: string;
@@ -43244,6 +43324,7 @@ export declare const OrderPOSGetDto: z.ZodObject<{
43244
43324
  isTakeaway?: boolean | null | undefined;
43245
43325
  type: "DINE_IN";
43246
43326
  } | {
43327
+ slot?: string | null | undefined;
43247
43328
  remark?: string | null | undefined;
43248
43329
  pickupPoint?: {
43249
43330
  name: string;
@@ -43254,6 +43335,7 @@ export declare const OrderPOSGetDto: z.ZodObject<{
43254
43335
  contactNumber: string;
43255
43336
  pickupAt: string;
43256
43337
  } | {
43338
+ slot?: string | null | undefined;
43257
43339
  providers?: ({
43258
43340
  instruction?: string | null | undefined;
43259
43341
  driver?: {
@@ -43829,15 +43911,15 @@ export declare const OrderPOSGetDto: z.ZodObject<{
43829
43911
  draft: {
43830
43912
  id?: string | null | undefined;
43831
43913
  remark?: string | null | undefined;
43832
- is?: {
43833
- delivery?: boolean | null | undefined;
43834
- takeaway: boolean;
43835
- } | null | undefined;
43836
43914
  productId?: string | null | undefined;
43837
43915
  variantSelected?: {
43838
43916
  name: string[];
43839
43917
  combinationKey: string;
43840
43918
  } | null | undefined;
43919
+ is?: {
43920
+ delivery?: boolean | null | undefined;
43921
+ takeaway: boolean;
43922
+ } | null | undefined;
43841
43923
  quantity: number;
43842
43924
  product: {
43843
43925
  name: string;
@@ -43923,7 +44005,9 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
43923
44005
  address: string;
43924
44006
  coordinates: number[];
43925
44007
  }>>>>;
44008
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
43926
44009
  }>, "strip", z.ZodTypeAny, {
44010
+ slot?: string | null | undefined;
43927
44011
  remark?: string | null | undefined;
43928
44012
  pickupPoint?: {
43929
44013
  name: string;
@@ -43934,6 +44018,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
43934
44018
  contactNumber: string;
43935
44019
  pickupAt: string;
43936
44020
  }, {
44021
+ slot?: string | null | undefined;
43937
44022
  remark?: string | null | undefined;
43938
44023
  pickupPoint?: {
43939
44024
  name: string;
@@ -44831,7 +44916,9 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
44831
44916
  }>>>;
44832
44917
  deliveryAt: z.ZodString;
44833
44918
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
44919
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
44834
44920
  }>, "strip", z.ZodTypeAny, {
44921
+ slot?: string | null | undefined;
44835
44922
  providers?: ({
44836
44923
  instruction?: string | null | undefined;
44837
44924
  driver?: {
@@ -45026,6 +45113,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
45026
45113
  contactNumber: string;
45027
45114
  deliveryAt: string;
45028
45115
  }, {
45116
+ slot?: string | null | undefined;
45029
45117
  providers?: ({
45030
45118
  instruction?: string | null | undefined;
45031
45119
  driver?: {
@@ -45415,15 +45503,15 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
45415
45503
  }, "strip", z.ZodTypeAny, {
45416
45504
  id?: string | null | undefined;
45417
45505
  remark?: string | null | undefined;
45418
- is?: {
45419
- delivery?: boolean | null | undefined;
45420
- takeaway: boolean;
45421
- } | null | undefined;
45422
45506
  productId?: string | null | undefined;
45423
45507
  variantSelected?: {
45424
45508
  name: string[];
45425
45509
  combinationKey: string;
45426
45510
  } | null | undefined;
45511
+ is?: {
45512
+ delivery?: boolean | null | undefined;
45513
+ takeaway: boolean;
45514
+ } | null | undefined;
45427
45515
  quantity: number;
45428
45516
  product: {
45429
45517
  name: string;
@@ -45464,15 +45552,15 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
45464
45552
  }, {
45465
45553
  id?: string | null | undefined;
45466
45554
  remark?: string | null | undefined;
45467
- is?: {
45468
- delivery?: boolean | null | undefined;
45469
- takeaway: boolean;
45470
- } | null | undefined;
45471
45555
  productId?: string | null | undefined;
45472
45556
  variantSelected?: {
45473
45557
  name: string[];
45474
45558
  combinationKey: string;
45475
45559
  } | null | undefined;
45560
+ is?: {
45561
+ delivery?: boolean | null | undefined;
45562
+ takeaway: boolean;
45563
+ } | null | undefined;
45476
45564
  quantity: number;
45477
45565
  product: {
45478
45566
  name: string;
@@ -45540,6 +45628,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
45540
45628
  isTakeaway?: boolean | null | undefined;
45541
45629
  type: "DINE_IN";
45542
45630
  } | {
45631
+ slot?: string | null | undefined;
45543
45632
  remark?: string | null | undefined;
45544
45633
  pickupPoint?: {
45545
45634
  name: string;
@@ -45550,6 +45639,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
45550
45639
  contactNumber: string;
45551
45640
  pickupAt: string;
45552
45641
  } | {
45642
+ slot?: string | null | undefined;
45553
45643
  providers?: ({
45554
45644
  instruction?: string | null | undefined;
45555
45645
  driver?: {
@@ -45750,15 +45840,15 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
45750
45840
  draft: {
45751
45841
  id?: string | null | undefined;
45752
45842
  remark?: string | null | undefined;
45753
- is?: {
45754
- delivery?: boolean | null | undefined;
45755
- takeaway: boolean;
45756
- } | null | undefined;
45757
45843
  productId?: string | null | undefined;
45758
45844
  variantSelected?: {
45759
45845
  name: string[];
45760
45846
  combinationKey: string;
45761
45847
  } | null | undefined;
45848
+ is?: {
45849
+ delivery?: boolean | null | undefined;
45850
+ takeaway: boolean;
45851
+ } | null | undefined;
45762
45852
  quantity: number;
45763
45853
  product: {
45764
45854
  name: string;
@@ -45817,6 +45907,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
45817
45907
  isTakeaway?: boolean | null | undefined;
45818
45908
  type: "DINE_IN";
45819
45909
  } | {
45910
+ slot?: string | null | undefined;
45820
45911
  remark?: string | null | undefined;
45821
45912
  pickupPoint?: {
45822
45913
  name: string;
@@ -45827,6 +45918,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
45827
45918
  contactNumber: string;
45828
45919
  pickupAt: string;
45829
45920
  } | {
45921
+ slot?: string | null | undefined;
45830
45922
  providers?: ({
45831
45923
  instruction?: string | null | undefined;
45832
45924
  driver?: {
@@ -46022,15 +46114,15 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
46022
46114
  draft: {
46023
46115
  id?: string | null | undefined;
46024
46116
  remark?: string | null | undefined;
46025
- is?: {
46026
- delivery?: boolean | null | undefined;
46027
- takeaway: boolean;
46028
- } | null | undefined;
46029
46117
  productId?: string | null | undefined;
46030
46118
  variantSelected?: {
46031
46119
  name: string[];
46032
46120
  combinationKey: string;
46033
46121
  } | null | undefined;
46122
+ is?: {
46123
+ delivery?: boolean | null | undefined;
46124
+ takeaway: boolean;
46125
+ } | null | undefined;
46034
46126
  quantity: number;
46035
46127
  product: {
46036
46128
  name: string;
@@ -46090,6 +46182,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
46090
46182
  isTakeaway?: boolean | null | undefined;
46091
46183
  type: "DINE_IN";
46092
46184
  } | {
46185
+ slot?: string | null | undefined;
46093
46186
  remark?: string | null | undefined;
46094
46187
  pickupPoint?: {
46095
46188
  name: string;
@@ -46100,6 +46193,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
46100
46193
  contactNumber: string;
46101
46194
  pickupAt: string;
46102
46195
  } | {
46196
+ slot?: string | null | undefined;
46103
46197
  providers?: ({
46104
46198
  instruction?: string | null | undefined;
46105
46199
  driver?: {
@@ -46300,15 +46394,15 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
46300
46394
  draft: {
46301
46395
  id?: string | null | undefined;
46302
46396
  remark?: string | null | undefined;
46303
- is?: {
46304
- delivery?: boolean | null | undefined;
46305
- takeaway: boolean;
46306
- } | null | undefined;
46307
46397
  productId?: string | null | undefined;
46308
46398
  variantSelected?: {
46309
46399
  name: string[];
46310
46400
  combinationKey: string;
46311
46401
  } | null | undefined;
46402
+ is?: {
46403
+ delivery?: boolean | null | undefined;
46404
+ takeaway: boolean;
46405
+ } | null | undefined;
46312
46406
  quantity: number;
46313
46407
  product: {
46314
46408
  name: string;
@@ -46367,6 +46461,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
46367
46461
  isTakeaway?: boolean | null | undefined;
46368
46462
  type: "DINE_IN";
46369
46463
  } | {
46464
+ slot?: string | null | undefined;
46370
46465
  remark?: string | null | undefined;
46371
46466
  pickupPoint?: {
46372
46467
  name: string;
@@ -46377,6 +46472,7 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
46377
46472
  contactNumber: string;
46378
46473
  pickupAt: string;
46379
46474
  } | {
46475
+ slot?: string | null | undefined;
46380
46476
  providers?: ({
46381
46477
  instruction?: string | null | undefined;
46382
46478
  driver?: {
@@ -46572,15 +46668,15 @@ export declare const OrderPOSUpdateDto: z.ZodEffects<z.ZodObject<{
46572
46668
  draft: {
46573
46669
  id?: string | null | undefined;
46574
46670
  remark?: string | null | undefined;
46575
- is?: {
46576
- delivery?: boolean | null | undefined;
46577
- takeaway: boolean;
46578
- } | null | undefined;
46579
46671
  productId?: string | null | undefined;
46580
46672
  variantSelected?: {
46581
46673
  name: string[];
46582
46674
  combinationKey: string;
46583
46675
  } | null | undefined;
46676
+ is?: {
46677
+ delivery?: boolean | null | undefined;
46678
+ takeaway: boolean;
46679
+ } | null | undefined;
46584
46680
  quantity: number;
46585
46681
  product: {
46586
46682
  name: string;
@@ -47179,16 +47275,16 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
47179
47275
  }>, "strip", z.ZodTypeAny, {
47180
47276
  id?: string | null | undefined;
47181
47277
  remark?: string | null | undefined;
47182
- is?: {
47183
- delivery?: boolean | null | undefined;
47184
- takeaway: boolean;
47185
- } | null | undefined;
47186
47278
  productId?: string | null | undefined;
47187
47279
  variantSelected?: {
47188
47280
  name: string[];
47189
47281
  combinationKey: string;
47190
47282
  } | null | undefined;
47191
47283
  upsellingId?: string | null | undefined;
47284
+ is?: {
47285
+ delivery?: boolean | null | undefined;
47286
+ takeaway: boolean;
47287
+ } | null | undefined;
47192
47288
  customer?: any;
47193
47289
  nettTotal?: {
47194
47290
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -47330,10 +47426,6 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
47330
47426
  }, {
47331
47427
  id?: string | null | undefined;
47332
47428
  remark?: string | null | undefined;
47333
- is?: {
47334
- delivery?: boolean | null | undefined;
47335
- takeaway: boolean;
47336
- } | null | undefined;
47337
47429
  taxes?: Record<string, any> | undefined;
47338
47430
  productId?: string | null | undefined;
47339
47431
  variantSelected?: {
@@ -47341,6 +47433,10 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
47341
47433
  combinationKey: string;
47342
47434
  } | null | undefined;
47343
47435
  upsellingId?: string | null | undefined;
47436
+ is?: {
47437
+ delivery?: boolean | null | undefined;
47438
+ takeaway: boolean;
47439
+ } | null | undefined;
47344
47440
  customer?: any;
47345
47441
  adjustments?: Record<string, any> | undefined;
47346
47442
  nettTotal?: {
@@ -47625,7 +47721,9 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
47625
47721
  address: string;
47626
47722
  coordinates: number[];
47627
47723
  }>>>>;
47724
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
47628
47725
  }>, "strip", z.ZodTypeAny, {
47726
+ slot?: string | null | undefined;
47629
47727
  remark?: string | null | undefined;
47630
47728
  pickupPoint?: {
47631
47729
  name: string;
@@ -47636,6 +47734,7 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
47636
47734
  contactNumber: string;
47637
47735
  pickupAt: string;
47638
47736
  }, {
47737
+ slot?: string | null | undefined;
47639
47738
  remark?: string | null | undefined;
47640
47739
  pickupPoint?: {
47641
47740
  name: string;
@@ -48533,7 +48632,9 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
48533
48632
  }>>>;
48534
48633
  deliveryAt: z.ZodString;
48535
48634
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
48635
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
48536
48636
  }>, "strip", z.ZodTypeAny, {
48637
+ slot?: string | null | undefined;
48537
48638
  providers?: ({
48538
48639
  instruction?: string | null | undefined;
48539
48640
  driver?: {
@@ -48728,6 +48829,7 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
48728
48829
  contactNumber: string;
48729
48830
  deliveryAt: string;
48730
48831
  }, {
48832
+ slot?: string | null | undefined;
48731
48833
  providers?: ({
48732
48834
  instruction?: string | null | undefined;
48733
48835
  driver?: {
@@ -48955,6 +49057,7 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
48955
49057
  };
48956
49058
  type: "DINE_IN";
48957
49059
  } | {
49060
+ slot?: string | null | undefined;
48958
49061
  remark?: string | null | undefined;
48959
49062
  pickupPoint?: {
48960
49063
  name: string;
@@ -48965,6 +49068,7 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
48965
49068
  contactNumber: string;
48966
49069
  pickupAt: string;
48967
49070
  } | {
49071
+ slot?: string | null | undefined;
48968
49072
  providers?: ({
48969
49073
  instruction?: string | null | undefined;
48970
49074
  driver?: {
@@ -49164,16 +49268,16 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
49164
49268
  draft: {
49165
49269
  id?: string | null | undefined;
49166
49270
  remark?: string | null | undefined;
49167
- is?: {
49168
- delivery?: boolean | null | undefined;
49169
- takeaway: boolean;
49170
- } | null | undefined;
49171
49271
  productId?: string | null | undefined;
49172
49272
  variantSelected?: {
49173
49273
  name: string[];
49174
49274
  combinationKey: string;
49175
49275
  } | null | undefined;
49176
49276
  upsellingId?: string | null | undefined;
49277
+ is?: {
49278
+ delivery?: boolean | null | undefined;
49279
+ takeaway: boolean;
49280
+ } | null | undefined;
49177
49281
  customer?: any;
49178
49282
  nettTotal?: {
49179
49283
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -49349,6 +49453,7 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
49349
49453
  };
49350
49454
  type: "DINE_IN";
49351
49455
  } | {
49456
+ slot?: string | null | undefined;
49352
49457
  remark?: string | null | undefined;
49353
49458
  pickupPoint?: {
49354
49459
  name: string;
@@ -49359,6 +49464,7 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
49359
49464
  contactNumber: string;
49360
49465
  pickupAt: string;
49361
49466
  } | {
49467
+ slot?: string | null | undefined;
49362
49468
  providers?: ({
49363
49469
  instruction?: string | null | undefined;
49364
49470
  driver?: {
@@ -49553,10 +49659,6 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
49553
49659
  draft: {
49554
49660
  id?: string | null | undefined;
49555
49661
  remark?: string | null | undefined;
49556
- is?: {
49557
- delivery?: boolean | null | undefined;
49558
- takeaway: boolean;
49559
- } | null | undefined;
49560
49662
  taxes?: Record<string, any> | undefined;
49561
49663
  productId?: string | null | undefined;
49562
49664
  variantSelected?: {
@@ -49564,6 +49666,10 @@ export declare const OrderCustomerV1Dto: z.ZodObject<{
49564
49666
  combinationKey: string;
49565
49667
  } | null | undefined;
49566
49668
  upsellingId?: string | null | undefined;
49669
+ is?: {
49670
+ delivery?: boolean | null | undefined;
49671
+ takeaway: boolean;
49672
+ } | null | undefined;
49567
49673
  customer?: any;
49568
49674
  adjustments?: Record<string, any> | undefined;
49569
49675
  nettTotal?: {
@@ -49856,7 +49962,9 @@ export declare const OrderPortalDto: z.ZodObject<{
49856
49962
  address: string;
49857
49963
  coordinates: number[];
49858
49964
  }>>>>;
49965
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
49859
49966
  }>, "strip", z.ZodTypeAny, {
49967
+ slot?: string | null | undefined;
49860
49968
  remark?: string | null | undefined;
49861
49969
  pickupPoint?: {
49862
49970
  name: string;
@@ -49867,6 +49975,7 @@ export declare const OrderPortalDto: z.ZodObject<{
49867
49975
  contactNumber: string;
49868
49976
  pickupAt: string;
49869
49977
  }, {
49978
+ slot?: string | null | undefined;
49870
49979
  remark?: string | null | undefined;
49871
49980
  pickupPoint?: {
49872
49981
  name: string;
@@ -50764,7 +50873,9 @@ export declare const OrderPortalDto: z.ZodObject<{
50764
50873
  }>>>;
50765
50874
  deliveryAt: z.ZodString;
50766
50875
  allocatingAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
50876
+ slot: z.ZodNullable<z.ZodOptional<z.ZodString>>;
50767
50877
  }>, "strip", z.ZodTypeAny, {
50878
+ slot?: string | null | undefined;
50768
50879
  providers?: ({
50769
50880
  instruction?: string | null | undefined;
50770
50881
  driver?: {
@@ -50959,6 +51070,7 @@ export declare const OrderPortalDto: z.ZodObject<{
50959
51070
  contactNumber: string;
50960
51071
  deliveryAt: string;
50961
51072
  }, {
51073
+ slot?: string | null | undefined;
50962
51074
  providers?: ({
50963
51075
  instruction?: string | null | undefined;
50964
51076
  driver?: {
@@ -51506,16 +51618,16 @@ export declare const OrderPortalDto: z.ZodObject<{
51506
51618
  }, "strip", z.ZodTypeAny, {
51507
51619
  id?: string | null | undefined;
51508
51620
  remark?: string | null | undefined;
51509
- is?: {
51510
- delivery?: boolean | null | undefined;
51511
- takeaway: boolean;
51512
- } | null | undefined;
51513
51621
  productId?: string | null | undefined;
51514
51622
  variantSelected?: {
51515
51623
  name: string[];
51516
51624
  combinationKey: string;
51517
51625
  } | null | undefined;
51518
51626
  upsellingId?: string | null | undefined;
51627
+ is?: {
51628
+ delivery?: boolean | null | undefined;
51629
+ takeaway: boolean;
51630
+ } | null | undefined;
51519
51631
  customer?: any;
51520
51632
  nettTotal?: {
51521
51633
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -51657,10 +51769,6 @@ export declare const OrderPortalDto: z.ZodObject<{
51657
51769
  }, {
51658
51770
  id?: string | null | undefined;
51659
51771
  remark?: string | null | undefined;
51660
- is?: {
51661
- delivery?: boolean | null | undefined;
51662
- takeaway: boolean;
51663
- } | null | undefined;
51664
51772
  taxes?: Record<string, any> | undefined;
51665
51773
  productId?: string | null | undefined;
51666
51774
  variantSelected?: {
@@ -51668,6 +51776,10 @@ export declare const OrderPortalDto: z.ZodObject<{
51668
51776
  combinationKey: string;
51669
51777
  } | null | undefined;
51670
51778
  upsellingId?: string | null | undefined;
51779
+ is?: {
51780
+ delivery?: boolean | null | undefined;
51781
+ takeaway: boolean;
51782
+ } | null | undefined;
51671
51783
  customer?: any;
51672
51784
  adjustments?: Record<string, any> | undefined;
51673
51785
  nettTotal?: {
@@ -55924,6 +56036,7 @@ export declare const OrderPortalDto: z.ZodObject<{
55924
56036
  };
55925
56037
  type: "DINE_IN";
55926
56038
  } | {
56039
+ slot?: string | null | undefined;
55927
56040
  remark?: string | null | undefined;
55928
56041
  pickupPoint?: {
55929
56042
  name: string;
@@ -55934,6 +56047,7 @@ export declare const OrderPortalDto: z.ZodObject<{
55934
56047
  contactNumber: string;
55935
56048
  pickupAt: string;
55936
56049
  } | {
56050
+ slot?: string | null | undefined;
55937
56051
  providers?: ({
55938
56052
  instruction?: string | null | undefined;
55939
56053
  driver?: {
@@ -56138,16 +56252,16 @@ export declare const OrderPortalDto: z.ZodObject<{
56138
56252
  draft: {
56139
56253
  id?: string | null | undefined;
56140
56254
  remark?: string | null | undefined;
56141
- is?: {
56142
- delivery?: boolean | null | undefined;
56143
- takeaway: boolean;
56144
- } | null | undefined;
56145
56255
  productId?: string | null | undefined;
56146
56256
  variantSelected?: {
56147
56257
  name: string[];
56148
56258
  combinationKey: string;
56149
56259
  } | null | undefined;
56150
56260
  upsellingId?: string | null | undefined;
56261
+ is?: {
56262
+ delivery?: boolean | null | undefined;
56263
+ takeaway: boolean;
56264
+ } | null | undefined;
56151
56265
  customer?: any;
56152
56266
  nettTotal?: {
56153
56267
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -56702,6 +56816,7 @@ export declare const OrderPortalDto: z.ZodObject<{
56702
56816
  };
56703
56817
  type: "DINE_IN";
56704
56818
  } | {
56819
+ slot?: string | null | undefined;
56705
56820
  remark?: string | null | undefined;
56706
56821
  pickupPoint?: {
56707
56822
  name: string;
@@ -56712,6 +56827,7 @@ export declare const OrderPortalDto: z.ZodObject<{
56712
56827
  contactNumber: string;
56713
56828
  pickupAt: string;
56714
56829
  } | {
56830
+ slot?: string | null | undefined;
56715
56831
  providers?: ({
56716
56832
  instruction?: string | null | undefined;
56717
56833
  driver?: {
@@ -56910,10 +57026,6 @@ export declare const OrderPortalDto: z.ZodObject<{
56910
57026
  draft: {
56911
57027
  id?: string | null | undefined;
56912
57028
  remark?: string | null | undefined;
56913
- is?: {
56914
- delivery?: boolean | null | undefined;
56915
- takeaway: boolean;
56916
- } | null | undefined;
56917
57029
  taxes?: Record<string, any> | undefined;
56918
57030
  productId?: string | null | undefined;
56919
57031
  variantSelected?: {
@@ -56921,6 +57033,10 @@ export declare const OrderPortalDto: z.ZodObject<{
56921
57033
  combinationKey: string;
56922
57034
  } | null | undefined;
56923
57035
  upsellingId?: string | null | undefined;
57036
+ is?: {
57037
+ delivery?: boolean | null | undefined;
57038
+ takeaway: boolean;
57039
+ } | null | undefined;
56924
57040
  customer?: any;
56925
57041
  adjustments?: Record<string, any> | undefined;
56926
57042
  nettTotal?: {
@@ -63712,10 +63828,6 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
63712
63828
  }> | null | undefined;
63713
63829
  status: "DRAFT" | "REFUNDED" | "VOIDED" | "SENT";
63714
63830
  quantity: number;
63715
- is: {
63716
- delivery?: boolean | null | undefined;
63717
- takeaway: boolean;
63718
- };
63719
63831
  taxes: Record<string, {
63720
63832
  inclusive?: boolean | null | undefined;
63721
63833
  taxCode?: string | null | undefined;
@@ -63792,6 +63904,10 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
63792
63904
  };
63793
63905
  };
63794
63906
  subItems: import("@feedmepos/core/entity").FdoBillSubItemRef[];
63907
+ is: {
63908
+ delivery?: boolean | null | undefined;
63909
+ takeaway: boolean;
63910
+ };
63795
63911
  adjustments: Record<string, {
63796
63912
  reason?: string | null | undefined;
63797
63913
  referenceId?: string | null | undefined;