@feedmepos/mf-order-setting 0.0.50 → 0.0.52

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 (42) hide show
  1. package/dist/{KioskDevicesView-u14hzPbE.js → KioskDevicesView-D_YT-CL0.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DBgRDIoS.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-Bxv6oiFw.js} +2 -2
  3. package/dist/KioskSettingView-DS5vEQ07.js +573 -0
  4. package/dist/{KioskView-M8V91gD5.js → KioskView-B8NHcyGz.js} +111 -108
  5. package/dist/{OrderSettingsView-Bl3LshG3.js → OrderSettingsView-BhEN-2ZZ.js} +2940 -2941
  6. package/dist/{app-CLewMjcd.js → app-BWFBpJUR.js} +20 -12
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-DCTYRWyD.js → dayjs.min-CD9R3x-Y.js} +1 -1
  9. package/dist/frontend/mf-order/src/app.d.ts +8 -0
  10. package/dist/frontend/mf-order/src/main.d.ts +8 -0
  11. package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +2 -0
  12. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +6 -0
  13. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  14. package/dist/{index-B7LtJeBJ.js → index-Bjwv8B4h.js} +2 -2
  15. package/dist/{menu.dto-Co7iXHNr.js → menu.dto-Wzm4Tz0i.js} +1577 -1572
  16. package/dist/package/entity/food-court/order.do.d.ts +26 -1
  17. package/dist/package/entity/food-court/order.dto.d.ts +0 -3
  18. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +15 -0
  19. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +18 -0
  20. package/dist/package/entity/order/order-item/order-item.dto.d.ts +30 -0
  21. package/dist/package/entity/order/order.do.d.ts +8 -0
  22. package/dist/package/entity/order/order.dto.d.ts +118 -0
  23. package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +20 -0
  24. package/dist/package/entity/order-platform/external/menu/external-menu.do.d.ts +23 -0
  25. package/dist/package/entity/order-platform/menu.dto.d.ts +34 -0
  26. package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +3 -0
  27. package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +3 -0
  28. package/dist/package/entity/order-setting/order-setting.do.d.ts +5 -0
  29. package/dist/package/entity/order-setting/order-setting.dto.d.ts +10 -0
  30. package/dist/package/entity/queue/queue.dto.d.ts +25 -0
  31. package/dist/package/entity/restaurant/restaurant.dto.d.ts +5 -0
  32. package/dist/package/entity/websocket/websocket.dto.d.ts +12 -0
  33. package/package.json +1 -1
  34. package/src/locales/en-US.json +3 -1
  35. package/src/locales/ja-JP.json +11 -9
  36. package/src/locales/th-TH.json +3 -1
  37. package/src/locales/zh-CN.json +3 -1
  38. package/src/modules/order-setting/kiosk/interface.ts +15 -13
  39. package/src/stores/order-setting/mapper.ts +16 -13
  40. package/src/views/kiosk/settings/KioskSettingView.vue +43 -23
  41. package/src/views/order-settings/delivery/integrated-delivery/IntegratedDelivery.vue +3 -1
  42. package/dist/KioskSettingView-DmvtZcV1.js +0 -553
@@ -638,6 +638,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
638
638
  }, {
639
639
  showAllOnly: boolean;
640
640
  }>>>;
641
+ otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
641
642
  }, "strip", z.ZodTypeAny, {
642
643
  dineIn?: {
643
644
  requiredSlot?: boolean | null | undefined;
@@ -694,6 +695,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
694
695
  menuItem?: {
695
696
  showAllOnly: boolean;
696
697
  } | null | undefined;
698
+ otaChannel?: string | null | undefined;
697
699
  }, {
698
700
  dineIn?: {
699
701
  requiredSlot?: boolean | null | undefined;
@@ -750,6 +752,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
750
752
  menuItem?: {
751
753
  showAllOnly: boolean;
752
754
  } | null | undefined;
755
+ otaChannel?: string | null | undefined;
753
756
  }>>;
754
757
  export type OrderKioskSettings = z.infer<typeof OrderKioskSettings>;
755
758
  export type OrderKioskDineIn = z.infer<typeof OrderKioskDineIn>;
@@ -722,6 +722,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
722
722
  }, {
723
723
  showAllOnly: boolean;
724
724
  }>>>;
725
+ otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
725
726
  }, "strip", z.ZodTypeAny, {
726
727
  dineIn?: {
727
728
  requiredSlot?: boolean | null | undefined;
@@ -778,6 +779,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
778
779
  menuItem?: {
779
780
  showAllOnly: boolean;
780
781
  } | null | undefined;
782
+ otaChannel?: string | null | undefined;
781
783
  }, {
782
784
  dineIn?: {
783
785
  requiredSlot?: boolean | null | undefined;
@@ -834,6 +836,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
834
836
  menuItem?: {
835
837
  showAllOnly: boolean;
836
838
  } | null | undefined;
839
+ otaChannel?: string | null | undefined;
837
840
  }>>>;
838
841
  queueSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
839
842
  enableOrder: z.ZodBoolean;
@@ -1151,6 +1154,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
1151
1154
  menuItem?: {
1152
1155
  showAllOnly: boolean;
1153
1156
  } | null | undefined;
1157
+ otaChannel?: string | null | undefined;
1154
1158
  } | null | undefined;
1155
1159
  enableV3?: boolean | null | undefined;
1156
1160
  dineInSettings?: {
@@ -1342,6 +1346,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
1342
1346
  menuItem?: {
1343
1347
  showAllOnly: boolean;
1344
1348
  } | null | undefined;
1349
+ otaChannel?: string | null | undefined;
1345
1350
  } | null | undefined;
1346
1351
  enableV3?: boolean | null | undefined;
1347
1352
  dineInSettings?: {
@@ -511,6 +511,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
511
511
  }, {
512
512
  showAllOnly: boolean;
513
513
  }>>>;
514
+ otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
514
515
  }, "strip", z.ZodTypeAny, {
515
516
  dineIn?: {
516
517
  requiredSlot?: boolean | null | undefined;
@@ -567,6 +568,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
567
568
  menuItem?: {
568
569
  showAllOnly: boolean;
569
570
  } | null | undefined;
571
+ otaChannel?: string | null | undefined;
570
572
  }, {
571
573
  dineIn?: {
572
574
  requiredSlot?: boolean | null | undefined;
@@ -623,6 +625,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
623
625
  menuItem?: {
624
626
  showAllOnly: boolean;
625
627
  } | null | undefined;
628
+ otaChannel?: string | null | undefined;
626
629
  }>>>>;
627
630
  queueSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
628
631
  enableOrder: z.ZodBoolean;
@@ -1113,6 +1116,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1113
1116
  menuItem?: {
1114
1117
  showAllOnly: boolean;
1115
1118
  } | null | undefined;
1119
+ otaChannel?: string | null | undefined;
1116
1120
  } | null | undefined;
1117
1121
  enableV3?: boolean | null | undefined;
1118
1122
  dineInSettings?: {
@@ -1303,6 +1307,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1303
1307
  menuItem?: {
1304
1308
  showAllOnly: boolean;
1305
1309
  } | null | undefined;
1310
+ otaChannel?: string | null | undefined;
1306
1311
  } | null | undefined;
1307
1312
  enableV3?: boolean | null | undefined;
1308
1313
  dineInSettings?: {
@@ -1919,6 +1924,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1919
1924
  }, {
1920
1925
  showAllOnly: boolean;
1921
1926
  }>>>;
1927
+ otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1922
1928
  }, "strip", z.ZodTypeAny, {
1923
1929
  dineIn?: {
1924
1930
  requiredSlot?: boolean | null | undefined;
@@ -1975,6 +1981,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1975
1981
  menuItem?: {
1976
1982
  showAllOnly: boolean;
1977
1983
  } | null | undefined;
1984
+ otaChannel?: string | null | undefined;
1978
1985
  }, {
1979
1986
  dineIn?: {
1980
1987
  requiredSlot?: boolean | null | undefined;
@@ -2031,6 +2038,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2031
2038
  menuItem?: {
2032
2039
  showAllOnly: boolean;
2033
2040
  } | null | undefined;
2041
+ otaChannel?: string | null | undefined;
2034
2042
  }>>>>;
2035
2043
  queueSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2036
2044
  enableOrder: z.ZodBoolean;
@@ -2521,6 +2529,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2521
2529
  menuItem?: {
2522
2530
  showAllOnly: boolean;
2523
2531
  } | null | undefined;
2532
+ otaChannel?: string | null | undefined;
2524
2533
  } | null | undefined;
2525
2534
  enableV3?: boolean | null | undefined;
2526
2535
  dineInSettings?: {
@@ -2710,6 +2719,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2710
2719
  menuItem?: {
2711
2720
  showAllOnly: boolean;
2712
2721
  } | null | undefined;
2722
+ otaChannel?: string | null | undefined;
2713
2723
  } | null | undefined;
2714
2724
  enableV3?: boolean | null | undefined;
2715
2725
  dineInSettings?: {
@@ -1420,6 +1420,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1420
1420
  minPrice?: any;
1421
1421
  customAttributes?: Record<string, any> | null | undefined;
1422
1422
  subCategories?: string[] | null | undefined;
1423
+ shelfLife?: number | null | undefined;
1423
1424
  name: string;
1424
1425
  } | null | undefined;
1425
1426
  variantSelected?: {
@@ -1470,6 +1471,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1470
1471
  minPrice?: any;
1471
1472
  customAttributes?: Record<string, any> | null | undefined;
1472
1473
  subCategories?: string[] | null | undefined;
1474
+ shelfLife?: number | null | undefined;
1473
1475
  name: string;
1474
1476
  } | null | undefined;
1475
1477
  variantSelected?: {
@@ -1520,6 +1522,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1520
1522
  minPrice?: any;
1521
1523
  customAttributes?: Record<string, any> | null | undefined;
1522
1524
  subCategories?: string[] | null | undefined;
1525
+ shelfLife?: number | null | undefined;
1523
1526
  name: string;
1524
1527
  } | null | undefined;
1525
1528
  variantSelected?: {
@@ -1570,6 +1573,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1570
1573
  minPrice?: any;
1571
1574
  customAttributes?: Record<string, any> | null | undefined;
1572
1575
  subCategories?: string[] | null | undefined;
1576
+ shelfLife?: number | null | undefined;
1573
1577
  name: string;
1574
1578
  } | null | undefined;
1575
1579
  variantSelected?: {
@@ -1640,6 +1644,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1640
1644
  costing: z.ZodNullable<z.ZodOptional<z.ZodAny>>;
1641
1645
  minPrice: z.ZodNullable<z.ZodOptional<z.ZodAny>>;
1642
1646
  customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
1647
+ shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1643
1648
  subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
1644
1649
  }, "strip", z.ZodTypeAny, {
1645
1650
  code?: string | null | undefined;
@@ -1668,6 +1673,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1668
1673
  minPrice?: any;
1669
1674
  customAttributes?: Record<string, any> | null | undefined;
1670
1675
  subCategories?: string[] | null | undefined;
1676
+ shelfLife?: number | null | undefined;
1671
1677
  name: string;
1672
1678
  price: {
1673
1679
  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";
@@ -1701,6 +1707,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1701
1707
  minPrice?: any;
1702
1708
  customAttributes?: Record<string, any> | null | undefined;
1703
1709
  subCategories?: string[] | null | undefined;
1710
+ shelfLife?: number | null | undefined;
1704
1711
  name: string;
1705
1712
  price: {
1706
1713
  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";
@@ -1793,6 +1800,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1793
1800
  minPrice?: any;
1794
1801
  customAttributes?: Record<string, any> | null | undefined;
1795
1802
  subCategories?: string[] | null | undefined;
1803
+ shelfLife?: number | null | undefined;
1796
1804
  name: string;
1797
1805
  price: {
1798
1806
  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";
@@ -1839,6 +1847,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1839
1847
  minPrice?: any;
1840
1848
  customAttributes?: Record<string, any> | null | undefined;
1841
1849
  subCategories?: string[] | null | undefined;
1850
+ shelfLife?: number | null | undefined;
1842
1851
  name: string;
1843
1852
  } | null | undefined;
1844
1853
  variantSelected?: {
@@ -1889,6 +1898,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1889
1898
  minPrice?: any;
1890
1899
  customAttributes?: Record<string, any> | null | undefined;
1891
1900
  subCategories?: string[] | null | undefined;
1901
+ shelfLife?: number | null | undefined;
1892
1902
  name: string;
1893
1903
  } | null | undefined;
1894
1904
  variantSelected?: {
@@ -1951,6 +1961,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1951
1961
  minPrice?: any;
1952
1962
  customAttributes?: Record<string, any> | null | undefined;
1953
1963
  subCategories?: string[] | null | undefined;
1964
+ shelfLife?: number | null | undefined;
1954
1965
  name: string;
1955
1966
  price: {
1956
1967
  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";
@@ -1997,6 +2008,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1997
2008
  minPrice?: any;
1998
2009
  customAttributes?: Record<string, any> | null | undefined;
1999
2010
  subCategories?: string[] | null | undefined;
2011
+ shelfLife?: number | null | undefined;
2000
2012
  name: string;
2001
2013
  } | null | undefined;
2002
2014
  variantSelected?: {
@@ -2047,6 +2059,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
2047
2059
  minPrice?: any;
2048
2060
  customAttributes?: Record<string, any> | null | undefined;
2049
2061
  subCategories?: string[] | null | undefined;
2062
+ shelfLife?: number | null | undefined;
2050
2063
  name: string;
2051
2064
  } | null | undefined;
2052
2065
  variantSelected?: {
@@ -5866,6 +5879,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
5866
5879
  minPrice?: any;
5867
5880
  customAttributes?: Record<string, any> | null | undefined;
5868
5881
  subCategories?: string[] | null | undefined;
5882
+ shelfLife?: number | null | undefined;
5869
5883
  name: string;
5870
5884
  price: {
5871
5885
  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";
@@ -5912,6 +5926,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
5912
5926
  minPrice?: any;
5913
5927
  customAttributes?: Record<string, any> | null | undefined;
5914
5928
  subCategories?: string[] | null | undefined;
5929
+ shelfLife?: number | null | undefined;
5915
5930
  name: string;
5916
5931
  } | null | undefined;
5917
5932
  variantSelected?: {
@@ -5962,6 +5977,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
5962
5977
  minPrice?: any;
5963
5978
  customAttributes?: Record<string, any> | null | undefined;
5964
5979
  subCategories?: string[] | null | undefined;
5980
+ shelfLife?: number | null | undefined;
5965
5981
  name: string;
5966
5982
  } | null | undefined;
5967
5983
  variantSelected?: {
@@ -6646,6 +6662,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
6646
6662
  minPrice?: any;
6647
6663
  customAttributes?: Record<string, any> | null | undefined;
6648
6664
  subCategories?: string[] | null | undefined;
6665
+ shelfLife?: number | null | undefined;
6649
6666
  name: string;
6650
6667
  price: {
6651
6668
  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";
@@ -6692,6 +6709,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
6692
6709
  minPrice?: any;
6693
6710
  customAttributes?: Record<string, any> | null | undefined;
6694
6711
  subCategories?: string[] | null | undefined;
6712
+ shelfLife?: number | null | undefined;
6695
6713
  name: string;
6696
6714
  } | null | undefined;
6697
6715
  variantSelected?: {
@@ -6742,6 +6760,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
6742
6760
  minPrice?: any;
6743
6761
  customAttributes?: Record<string, any> | null | undefined;
6744
6762
  subCategories?: string[] | null | undefined;
6763
+ shelfLife?: number | null | undefined;
6745
6764
  name: string;
6746
6765
  } | null | undefined;
6747
6766
  variantSelected?: {
@@ -7248,6 +7267,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
7248
7267
  minPrice?: any;
7249
7268
  customAttributes?: Record<string, any> | null | undefined;
7250
7269
  subCategories?: string[] | null | undefined;
7270
+ shelfLife?: number | null | undefined;
7251
7271
  name: string;
7252
7272
  price: {
7253
7273
  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";
@@ -7294,6 +7314,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
7294
7314
  minPrice?: any;
7295
7315
  customAttributes?: Record<string, any> | null | undefined;
7296
7316
  subCategories?: string[] | null | undefined;
7317
+ shelfLife?: number | null | undefined;
7297
7318
  name: string;
7298
7319
  } | null | undefined;
7299
7320
  variantSelected?: {
@@ -7344,6 +7365,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
7344
7365
  minPrice?: any;
7345
7366
  customAttributes?: Record<string, any> | null | undefined;
7346
7367
  subCategories?: string[] | null | undefined;
7368
+ shelfLife?: number | null | undefined;
7347
7369
  name: string;
7348
7370
  } | null | undefined;
7349
7371
  variantSelected?: {
@@ -8164,6 +8186,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
8164
8186
  minPrice?: any;
8165
8187
  customAttributes?: Record<string, any> | null | undefined;
8166
8188
  subCategories?: string[] | null | undefined;
8189
+ shelfLife?: number | null | undefined;
8167
8190
  name: string;
8168
8191
  price: {
8169
8192
  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";
@@ -8210,6 +8233,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
8210
8233
  minPrice?: any;
8211
8234
  customAttributes?: Record<string, any> | null | undefined;
8212
8235
  subCategories?: string[] | null | undefined;
8236
+ shelfLife?: number | null | undefined;
8213
8237
  name: string;
8214
8238
  } | null | undefined;
8215
8239
  variantSelected?: {
@@ -8260,6 +8284,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
8260
8284
  minPrice?: any;
8261
8285
  customAttributes?: Record<string, any> | null | undefined;
8262
8286
  subCategories?: string[] | null | undefined;
8287
+ shelfLife?: number | null | undefined;
8263
8288
  name: string;
8264
8289
  } | null | undefined;
8265
8290
  variantSelected?: {
@@ -3861,6 +3861,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3861
3861
  }, {
3862
3862
  showAllOnly: boolean;
3863
3863
  }>>>;
3864
+ otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3864
3865
  }, "strip", z.ZodTypeAny, {
3865
3866
  dineIn?: {
3866
3867
  requiredSlot?: boolean | null | undefined;
@@ -3917,6 +3918,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3917
3918
  menuItem?: {
3918
3919
  showAllOnly: boolean;
3919
3920
  } | null | undefined;
3921
+ otaChannel?: string | null | undefined;
3920
3922
  }, {
3921
3923
  dineIn?: {
3922
3924
  requiredSlot?: boolean | null | undefined;
@@ -3973,6 +3975,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3973
3975
  menuItem?: {
3974
3976
  showAllOnly: boolean;
3975
3977
  } | null | undefined;
3978
+ otaChannel?: string | null | undefined;
3976
3979
  }>>>>;
3977
3980
  paymentGateways: z.ZodArray<z.ZodDiscriminatedUnion<"paymentGateway", z.Primitive, z.ZodObject<z.extendShape<{
3978
3981
  _id: z.ZodString;
@@ -4425,6 +4428,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4425
4428
  menuItem?: {
4426
4429
  showAllOnly: boolean;
4427
4430
  } | null | undefined;
4431
+ otaChannel?: string | null | undefined;
4428
4432
  } | null | undefined;
4429
4433
  _id: string;
4430
4434
  businessId: string;
@@ -4679,6 +4683,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4679
4683
  menuItem?: {
4680
4684
  showAllOnly: boolean;
4681
4685
  } | null | undefined;
4686
+ otaChannel?: string | null | undefined;
4682
4687
  } | null | undefined;
4683
4688
  _id: string;
4684
4689
  businessId: string;
@@ -488,6 +488,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
488
488
  }, {
489
489
  showAllOnly: boolean;
490
490
  }>>>;
491
+ otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
491
492
  }, "strip", z.ZodTypeAny, {
492
493
  dineIn?: {
493
494
  requiredSlot?: boolean | null | undefined;
@@ -544,6 +545,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
544
545
  menuItem?: {
545
546
  showAllOnly: boolean;
546
547
  } | null | undefined;
548
+ otaChannel?: string | null | undefined;
547
549
  }, {
548
550
  dineIn?: {
549
551
  requiredSlot?: boolean | null | undefined;
@@ -600,6 +602,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
600
602
  menuItem?: {
601
603
  showAllOnly: boolean;
602
604
  } | null | undefined;
605
+ otaChannel?: string | null | undefined;
603
606
  }>>;
604
607
  }>, "strip", z.ZodTypeAny, {
605
608
  data: {
@@ -658,6 +661,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
658
661
  menuItem?: {
659
662
  showAllOnly: boolean;
660
663
  } | null | undefined;
664
+ otaChannel?: string | null | undefined;
661
665
  };
662
666
  type: "KIOSK:UPDATE_SETTING";
663
667
  }, {
@@ -717,6 +721,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
717
721
  menuItem?: {
718
722
  showAllOnly: boolean;
719
723
  } | null | undefined;
724
+ otaChannel?: string | null | undefined;
720
725
  } | undefined;
721
726
  type: "KIOSK:UPDATE_SETTING";
722
727
  }>>;
@@ -1174,6 +1179,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1174
1179
  }, {
1175
1180
  showAllOnly: boolean;
1176
1181
  }>>>;
1182
+ otaChannel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1177
1183
  }, "strip", z.ZodTypeAny, {
1178
1184
  dineIn?: {
1179
1185
  requiredSlot?: boolean | null | undefined;
@@ -1230,6 +1236,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1230
1236
  menuItem?: {
1231
1237
  showAllOnly: boolean;
1232
1238
  } | null | undefined;
1239
+ otaChannel?: string | null | undefined;
1233
1240
  }, {
1234
1241
  dineIn?: {
1235
1242
  requiredSlot?: boolean | null | undefined;
@@ -1286,6 +1293,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1286
1293
  menuItem?: {
1287
1294
  showAllOnly: boolean;
1288
1295
  } | null | undefined;
1296
+ otaChannel?: string | null | undefined;
1289
1297
  }>>;
1290
1298
  }>, "strip", z.ZodTypeAny, {
1291
1299
  data: {
@@ -1344,6 +1352,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1344
1352
  menuItem?: {
1345
1353
  showAllOnly: boolean;
1346
1354
  } | null | undefined;
1355
+ otaChannel?: string | null | undefined;
1347
1356
  };
1348
1357
  type: "KIOSK:UPDATE_SETTING";
1349
1358
  }, {
@@ -1403,6 +1412,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1403
1412
  menuItem?: {
1404
1413
  showAllOnly: boolean;
1405
1414
  } | null | undefined;
1415
+ otaChannel?: string | null | undefined;
1406
1416
  } | undefined;
1407
1417
  type: "KIOSK:UPDATE_SETTING";
1408
1418
  }>>;
@@ -1510,6 +1520,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1510
1520
  menuItem?: {
1511
1521
  showAllOnly: boolean;
1512
1522
  } | null | undefined;
1523
+ otaChannel?: string | null | undefined;
1513
1524
  };
1514
1525
  type: "KIOSK:UPDATE_SETTING";
1515
1526
  };
@@ -1618,6 +1629,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1618
1629
  menuItem?: {
1619
1630
  showAllOnly: boolean;
1620
1631
  } | null | undefined;
1632
+ otaChannel?: string | null | undefined;
1621
1633
  } | undefined;
1622
1634
  type: "KIOSK:UPDATE_SETTING";
1623
1635
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-order-setting",
3
- "version": "0.0.50",
3
+ "version": "0.0.52",
4
4
  "type": "module",
5
5
  "module": "./dist/app.js",
6
6
  "license": "UNLICENSED",
@@ -95,6 +95,8 @@
95
95
  "deliveryZone": "Delivery Zone",
96
96
  "deviceBinding": "Device Binding",
97
97
  "deviceDetails": "Device Details",
98
+ "otaChannel": "OTA channel",
99
+ "otaChannelHint": "Optional. Leave blank to use the default OTA feed.",
98
100
  "dineIn": "Dine In",
99
101
  "dineInCanTakeaway": "Allow Takeaway",
100
102
  "driveThru": "Drive Thru",
@@ -354,4 +356,4 @@
354
356
  "voucher": "Voucher"
355
357
  }
356
358
  }
357
- }
359
+ }
@@ -91,15 +91,17 @@
91
91
  "deliveryOrder": "配達注文",
92
92
  "deliveryTerm": "配達条件",
93
93
  "deliveryTime": "配達時間",
94
- "deliveryTitle": "{company}配達",
95
- "deliveryZone": "配達エリア",
96
- "deviceBinding": "デバイス紐付け",
97
- "deviceDetails": "デバイス詳細",
98
- "dineIn": "店内飲食",
99
- "dineInCanTakeaway": "テイクアウト許可",
100
- "driveThru": "ドライブスルー",
101
- "driveThruSettingUpdated": "ドライブスルー設定が更新されました。",
102
- "enableDriveThru": "ドライブスルーを有効にする",
94
+ "deliveryTitle": "{company}配達",
95
+ "deliveryZone": "配達エリア",
96
+ "deviceBinding": "デバイス紐付け",
97
+ "deviceDetails": "デバイス詳細",
98
+ "otaChannel": "OTAチャネル",
99
+ "otaChannelHint": "任意。空欄の場合はデフォルトのOTAフィードを使用します。",
100
+ "dineIn": "店内飲食",
101
+ "dineInCanTakeaway": "テイクアウト許可",
102
+ "driveThru": "ドライブスルー",
103
+ "driveThruSettingUpdated": "ドライブスルー設定が更新されました。",
104
+ "enableDriveThru": "ドライブスルーを有効にする",
103
105
  "enableDriveThruSublabel": "お客様向けのドライブスルー注文を有効にする",
104
106
  "dineInType": "店内飲食タイプ",
105
107
  "discountCampaign": "割引キャンペーン",
@@ -95,6 +95,8 @@
95
95
  "deliveryZone": "โซนการจัดส่ง",
96
96
  "deviceBinding": "การผูกอุปกรณ์",
97
97
  "deviceDetails": "รายละเอียดอุปกรณ์",
98
+ "otaChannel": "ช่อง OTA",
99
+ "otaChannelHint": "ไม่บังคับ เว้นว่างเพื่อใช้ฟีด OTA เริ่มต้น",
98
100
  "dineIn": "รับประทานอาหารที่ร้าน",
99
101
  "dineInCanTakeaway": "อนุญาตให้นำกลับบ้าน",
100
102
  "driveThru": "ไดรฟ์ทรู",
@@ -349,4 +351,4 @@
349
351
  "voucher": "บัตรกำนัล"
350
352
  }
351
353
  }
352
- }
354
+ }
@@ -96,6 +96,8 @@
96
96
  "deliveryZone": "配送区域",
97
97
  "deviceBinding": "设备绑定",
98
98
  "deviceDetails": "设备详情",
99
+ "otaChannel": "OTA 渠道",
100
+ "otaChannelHint": "可选。留空将使用默认的 OTA 源。",
99
101
  "dineIn": "堂食",
100
102
  "dineInCanTakeaway": "允许外带",
101
103
  "driveThru": "得来速",
@@ -357,4 +359,4 @@
357
359
  "voucher": "代金券"
358
360
  }
359
361
  }
360
- }
362
+ }
@@ -75,23 +75,25 @@ export type KioskPaymentTypesForm = MfKioskPaymentTypes;
75
75
 
76
76
  export type KioskPaymentSettingForm = MfKioskPaymentSetting;
77
77
 
78
- export interface MfKioskOrderSetting {
79
- dineIn: MfKioskDineInSetting,
80
- takeaway: MfKioskTakeawaySetting,
81
- paymentSetting: MfKioskPaymentSetting,
82
- menuItem: MfKioskOrderSettingMenuItemForm,
83
- }
78
+ export interface MfKioskOrderSetting {
79
+ dineIn: MfKioskDineInSetting,
80
+ takeaway: MfKioskTakeawaySetting,
81
+ paymentSetting: MfKioskPaymentSetting,
82
+ menuItem: MfKioskOrderSettingMenuItemForm,
83
+ otaChannel?: string | null,
84
+ }
84
85
 
85
86
  export interface MfKioskOrderSettingMenuItemForm {
86
87
  showAllOnly: boolean,
87
88
  }
88
89
 
89
- export interface MfKioskOrderSettingForm {
90
- dineIn: KioskDineInSettingForm,
91
- takeaway: KioskTakeawaySettingForm,
92
- paymentSetting: KioskPaymentSettingForm,
93
- menuItem: KioskMenuItemSettingForm,
94
- }
90
+ export interface MfKioskOrderSettingForm {
91
+ dineIn: KioskDineInSettingForm,
92
+ takeaway: KioskTakeawaySettingForm,
93
+ paymentSetting: KioskPaymentSettingForm,
94
+ menuItem: KioskMenuItemSettingForm,
95
+ otaChannel?: string | null,
96
+ }
95
97
 
96
98
  export type KioskPickAtCounterSettingForm = MfKioskPickAtCounterSetting;
97
99
  export type KioskMenuItemSettingForm = MfKioskOrderSettingMenuItemForm;
@@ -100,4 +102,4 @@ export interface KioskDineInSettingForm {
100
102
  sequenceNumber: MfKioskSequenceNumberSetting,
101
103
  displayStand: DisplayStandSettingForm,
102
104
  pickUp: KioskPickAtCounterSettingForm,
103
- }
105
+ }