@feedmepos/mf-order-setting 0.0.67-dev → 0.0.68-prod

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 (51) hide show
  1. package/dist/{KioskDevicesView-mu33XbDe.js → KioskDevicesView-CACKpFoO.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DnnwwP5B.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BJIOCfEr.js} +3 -3
  3. package/dist/{KioskSettingView-CAwO1SeK.js → KioskSettingView-BVjtaNjl.js} +4 -4
  4. package/dist/{KioskView-pvtKqW3e.js → KioskView-6K48HkE4.js} +4 -4
  5. package/dist/OrderSettingsView-CStNEAkv.js +32126 -0
  6. package/dist/{app-MjAVO4M6.js → app-CAyePmCd.js} +229 -215
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-ClRk0CwC.js → dayjs.min-BytKqRJv.js} +1 -1
  9. package/dist/frontend/mf-order/src/app.d.ts +11 -0
  10. package/dist/frontend/mf-order/src/main.d.ts +11 -0
  11. package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +45 -0
  12. package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +22 -0
  13. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +15 -0
  14. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +2 -2
  15. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  16. package/dist/{index-D7iNmBKX.js → index-BcbPl43J.js} +6 -6
  17. package/dist/{index-BWDduW_i.js → index-DkRVfP6c.js} +2 -2
  18. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +36 -18
  19. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +7 -2
  20. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +92 -60
  21. package/dist/package/entity/kiosk/kiosk.do.d.ts +464 -0
  22. package/dist/package/entity/kiosk/kiosk.dto.d.ts +565 -0
  23. package/dist/package/entity/order/order-item/order-item.dto.d.ts +125 -0
  24. package/dist/package/entity/order/order.do.d.ts +18 -0
  25. package/dist/package/entity/order/order.dto.d.ts +433 -0
  26. package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +5 -0
  27. package/dist/package/entity/order-platform/external/menu/external-menu.dto.d.ts +3 -3
  28. package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +8 -8
  29. package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +19 -19
  30. package/dist/package/entity/order-platform/external/order/external-order.enum.d.ts +1 -1
  31. package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +3 -3
  32. package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +3 -3
  33. package/dist/package/entity/order-platform/menu.dto.d.ts +0 -67
  34. package/dist/package/entity/order-platform/order-platform.enum.d.ts +1 -1
  35. package/dist/package/entity/order-setting/dine-in/dine-in.do.d.ts +29 -0
  36. package/dist/package/entity/order-setting/dine-in/dine-in.dto.d.ts +29 -0
  37. package/dist/package/entity/order-setting/order-setting.do.d.ts +29 -0
  38. package/dist/package/entity/order-setting/order-setting.dto.d.ts +58 -0
  39. package/dist/package/entity/printer/printer.do.d.ts +114 -0
  40. package/dist/package/entity/queue/queue.dto.d.ts +93 -0
  41. package/dist/package/entity/restaurant/restaurant.dto.d.ts +3 -0
  42. package/dist/queue-transfer.dto-BB0t5A1B.js +70184 -0
  43. package/package.json +5 -3
  44. package/src/locales/en-US.json +8 -0
  45. package/src/locales/ja-JP.json +1 -0
  46. package/src/locales/th-TH.json +1 -0
  47. package/src/locales/zh-CN.json +1 -0
  48. package/src/views/order-settings/dine-in/DineInSetting.vue +75 -0
  49. package/src/views/order-settings/general/GeneralSetting.vue +12 -0
  50. package/dist/OrderSettingsView-DgLwwgzb.js +0 -31258
  51. package/dist/queue-transfer.dto-CXRjYyMe.js +0 -45343
@@ -341,6 +341,47 @@ export declare const KioskDeviceDto: z.ZodObject<{
341
341
  type: "PRINTER_ID";
342
342
  printerId: string;
343
343
  }>>>>;
344
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
345
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
346
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
347
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
348
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
349
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
350
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
351
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
352
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
353
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
354
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
355
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
356
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
357
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
358
+ }, "strip", z.ZodTypeAny, {
359
+ hideProductCode?: boolean | null | undefined;
360
+ mode?: "POS" | "KIOSK" | null | undefined;
361
+ headerText?: string | null | undefined;
362
+ footerText?: string | null | undefined;
363
+ invoicePrefix?: string | null | undefined;
364
+ fontSize?: number | null | undefined;
365
+ needAddress?: boolean | null | undefined;
366
+ needPhoneNo?: boolean | null | undefined;
367
+ needEmail?: boolean | null | undefined;
368
+ hideZeroPriceAddon?: boolean | null | undefined;
369
+ hideZeroPriceItem?: boolean | null | undefined;
370
+ hideTaxSummary?: boolean | null | undefined;
371
+ }, {
372
+ hideProductCode?: boolean | null | undefined;
373
+ mode?: "POS" | "KIOSK" | null | undefined;
374
+ headerText?: string | null | undefined;
375
+ footerText?: string | null | undefined;
376
+ invoicePrefix?: string | null | undefined;
377
+ fontSize?: number | null | undefined;
378
+ needAddress?: boolean | null | undefined;
379
+ needPhoneNo?: boolean | null | undefined;
380
+ needEmail?: boolean | null | undefined;
381
+ hideZeroPriceAddon?: boolean | null | undefined;
382
+ hideZeroPriceItem?: boolean | null | undefined;
383
+ hideTaxSummary?: boolean | null | undefined;
384
+ }>>>;
344
385
  }, "strip", z.ZodTypeAny, {
345
386
  backup?: {
346
387
  type: "USB";
@@ -348,6 +389,21 @@ export declare const KioskDeviceDto: z.ZodObject<{
348
389
  type: "PRINTER_ID";
349
390
  printerId: string;
350
391
  } | null | undefined;
392
+ isFake?: boolean | null | undefined;
393
+ receipt?: {
394
+ hideProductCode?: boolean | null | undefined;
395
+ mode?: "POS" | "KIOSK" | null | undefined;
396
+ headerText?: string | null | undefined;
397
+ footerText?: string | null | undefined;
398
+ invoicePrefix?: string | null | undefined;
399
+ fontSize?: number | null | undefined;
400
+ needAddress?: boolean | null | undefined;
401
+ needPhoneNo?: boolean | null | undefined;
402
+ needEmail?: boolean | null | undefined;
403
+ hideZeroPriceAddon?: boolean | null | undefined;
404
+ hideZeroPriceItem?: boolean | null | undefined;
405
+ hideTaxSummary?: boolean | null | undefined;
406
+ } | null | undefined;
351
407
  name: string;
352
408
  id: string;
353
409
  hardware: {
@@ -404,6 +460,21 @@ export declare const KioskDeviceDto: z.ZodObject<{
404
460
  type: "PRINTER_ID";
405
461
  printerId: string;
406
462
  } | null | undefined;
463
+ isFake?: boolean | null | undefined;
464
+ receipt?: {
465
+ hideProductCode?: boolean | null | undefined;
466
+ mode?: "POS" | "KIOSK" | null | undefined;
467
+ headerText?: string | null | undefined;
468
+ footerText?: string | null | undefined;
469
+ invoicePrefix?: string | null | undefined;
470
+ fontSize?: number | null | undefined;
471
+ needAddress?: boolean | null | undefined;
472
+ needPhoneNo?: boolean | null | undefined;
473
+ needEmail?: boolean | null | undefined;
474
+ hideZeroPriceAddon?: boolean | null | undefined;
475
+ hideZeroPriceItem?: boolean | null | undefined;
476
+ hideTaxSummary?: boolean | null | undefined;
477
+ } | null | undefined;
407
478
  name: string;
408
479
  id: string;
409
480
  hardware: {
@@ -486,6 +557,21 @@ export declare const KioskDeviceDto: z.ZodObject<{
486
557
  type: "PRINTER_ID";
487
558
  printerId: string;
488
559
  } | null | undefined;
560
+ isFake?: boolean | null | undefined;
561
+ receipt?: {
562
+ hideProductCode?: boolean | null | undefined;
563
+ mode?: "POS" | "KIOSK" | null | undefined;
564
+ headerText?: string | null | undefined;
565
+ footerText?: string | null | undefined;
566
+ invoicePrefix?: string | null | undefined;
567
+ fontSize?: number | null | undefined;
568
+ needAddress?: boolean | null | undefined;
569
+ needPhoneNo?: boolean | null | undefined;
570
+ needEmail?: boolean | null | undefined;
571
+ hideZeroPriceAddon?: boolean | null | undefined;
572
+ hideZeroPriceItem?: boolean | null | undefined;
573
+ hideTaxSummary?: boolean | null | undefined;
574
+ } | null | undefined;
489
575
  name: string;
490
576
  id: string;
491
577
  hardware: {
@@ -584,6 +670,21 @@ export declare const KioskDeviceDto: z.ZodObject<{
584
670
  type: "PRINTER_ID";
585
671
  printerId: string;
586
672
  } | null | undefined;
673
+ isFake?: boolean | null | undefined;
674
+ receipt?: {
675
+ hideProductCode?: boolean | null | undefined;
676
+ mode?: "POS" | "KIOSK" | null | undefined;
677
+ headerText?: string | null | undefined;
678
+ footerText?: string | null | undefined;
679
+ invoicePrefix?: string | null | undefined;
680
+ fontSize?: number | null | undefined;
681
+ needAddress?: boolean | null | undefined;
682
+ needPhoneNo?: boolean | null | undefined;
683
+ needEmail?: boolean | null | undefined;
684
+ hideZeroPriceAddon?: boolean | null | undefined;
685
+ hideZeroPriceItem?: boolean | null | undefined;
686
+ hideTaxSummary?: boolean | null | undefined;
687
+ } | null | undefined;
587
688
  name: string;
588
689
  id: string;
589
690
  hardware: {
@@ -900,6 +1001,47 @@ export declare const KioskDeviceUpdateDto: z.ZodObject<{
900
1001
  type: "PRINTER_ID";
901
1002
  printerId: string;
902
1003
  }>>>>;
1004
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1005
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1006
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
1007
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1008
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1009
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1010
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1011
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1012
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1013
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1014
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1015
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1016
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1017
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1018
+ }, "strip", z.ZodTypeAny, {
1019
+ hideProductCode?: boolean | null | undefined;
1020
+ mode?: "POS" | "KIOSK" | null | undefined;
1021
+ headerText?: string | null | undefined;
1022
+ footerText?: string | null | undefined;
1023
+ invoicePrefix?: string | null | undefined;
1024
+ fontSize?: number | null | undefined;
1025
+ needAddress?: boolean | null | undefined;
1026
+ needPhoneNo?: boolean | null | undefined;
1027
+ needEmail?: boolean | null | undefined;
1028
+ hideZeroPriceAddon?: boolean | null | undefined;
1029
+ hideZeroPriceItem?: boolean | null | undefined;
1030
+ hideTaxSummary?: boolean | null | undefined;
1031
+ }, {
1032
+ hideProductCode?: boolean | null | undefined;
1033
+ mode?: "POS" | "KIOSK" | null | undefined;
1034
+ headerText?: string | null | undefined;
1035
+ footerText?: string | null | undefined;
1036
+ invoicePrefix?: string | null | undefined;
1037
+ fontSize?: number | null | undefined;
1038
+ needAddress?: boolean | null | undefined;
1039
+ needPhoneNo?: boolean | null | undefined;
1040
+ needEmail?: boolean | null | undefined;
1041
+ hideZeroPriceAddon?: boolean | null | undefined;
1042
+ hideZeroPriceItem?: boolean | null | undefined;
1043
+ hideTaxSummary?: boolean | null | undefined;
1044
+ }>>>;
903
1045
  }, "strip", z.ZodTypeAny, {
904
1046
  backup?: {
905
1047
  type: "USB";
@@ -907,6 +1049,21 @@ export declare const KioskDeviceUpdateDto: z.ZodObject<{
907
1049
  type: "PRINTER_ID";
908
1050
  printerId: string;
909
1051
  } | null | undefined;
1052
+ isFake?: boolean | null | undefined;
1053
+ receipt?: {
1054
+ hideProductCode?: boolean | null | undefined;
1055
+ mode?: "POS" | "KIOSK" | null | undefined;
1056
+ headerText?: string | null | undefined;
1057
+ footerText?: string | null | undefined;
1058
+ invoicePrefix?: string | null | undefined;
1059
+ fontSize?: number | null | undefined;
1060
+ needAddress?: boolean | null | undefined;
1061
+ needPhoneNo?: boolean | null | undefined;
1062
+ needEmail?: boolean | null | undefined;
1063
+ hideZeroPriceAddon?: boolean | null | undefined;
1064
+ hideZeroPriceItem?: boolean | null | undefined;
1065
+ hideTaxSummary?: boolean | null | undefined;
1066
+ } | null | undefined;
910
1067
  name: string;
911
1068
  id: string;
912
1069
  hardware: {
@@ -963,6 +1120,21 @@ export declare const KioskDeviceUpdateDto: z.ZodObject<{
963
1120
  type: "PRINTER_ID";
964
1121
  printerId: string;
965
1122
  } | null | undefined;
1123
+ isFake?: boolean | null | undefined;
1124
+ receipt?: {
1125
+ hideProductCode?: boolean | null | undefined;
1126
+ mode?: "POS" | "KIOSK" | null | undefined;
1127
+ headerText?: string | null | undefined;
1128
+ footerText?: string | null | undefined;
1129
+ invoicePrefix?: string | null | undefined;
1130
+ fontSize?: number | null | undefined;
1131
+ needAddress?: boolean | null | undefined;
1132
+ needPhoneNo?: boolean | null | undefined;
1133
+ needEmail?: boolean | null | undefined;
1134
+ hideZeroPriceAddon?: boolean | null | undefined;
1135
+ hideZeroPriceItem?: boolean | null | undefined;
1136
+ hideTaxSummary?: boolean | null | undefined;
1137
+ } | null | undefined;
966
1138
  name: string;
967
1139
  id: string;
968
1140
  hardware: {
@@ -1096,6 +1268,21 @@ export declare const KioskDeviceUpdateDto: z.ZodObject<{
1096
1268
  type: "PRINTER_ID";
1097
1269
  printerId: string;
1098
1270
  } | null | undefined;
1271
+ isFake?: boolean | null | undefined;
1272
+ receipt?: {
1273
+ hideProductCode?: boolean | null | undefined;
1274
+ mode?: "POS" | "KIOSK" | null | undefined;
1275
+ headerText?: string | null | undefined;
1276
+ footerText?: string | null | undefined;
1277
+ invoicePrefix?: string | null | undefined;
1278
+ fontSize?: number | null | undefined;
1279
+ needAddress?: boolean | null | undefined;
1280
+ needPhoneNo?: boolean | null | undefined;
1281
+ needEmail?: boolean | null | undefined;
1282
+ hideZeroPriceAddon?: boolean | null | undefined;
1283
+ hideZeroPriceItem?: boolean | null | undefined;
1284
+ hideTaxSummary?: boolean | null | undefined;
1285
+ } | null | undefined;
1099
1286
  name: string;
1100
1287
  id: string;
1101
1288
  hardware: {
@@ -1179,6 +1366,21 @@ export declare const KioskDeviceUpdateDto: z.ZodObject<{
1179
1366
  type: "PRINTER_ID";
1180
1367
  printerId: string;
1181
1368
  } | null | undefined;
1369
+ isFake?: boolean | null | undefined;
1370
+ receipt?: {
1371
+ hideProductCode?: boolean | null | undefined;
1372
+ mode?: "POS" | "KIOSK" | null | undefined;
1373
+ headerText?: string | null | undefined;
1374
+ footerText?: string | null | undefined;
1375
+ invoicePrefix?: string | null | undefined;
1376
+ fontSize?: number | null | undefined;
1377
+ needAddress?: boolean | null | undefined;
1378
+ needPhoneNo?: boolean | null | undefined;
1379
+ needEmail?: boolean | null | undefined;
1380
+ hideZeroPriceAddon?: boolean | null | undefined;
1381
+ hideZeroPriceItem?: boolean | null | undefined;
1382
+ hideTaxSummary?: boolean | null | undefined;
1383
+ } | null | undefined;
1182
1384
  name: string;
1183
1385
  id: string;
1184
1386
  hardware: {
@@ -1549,6 +1751,47 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
1549
1751
  type: "PRINTER_ID";
1550
1752
  printerId: string;
1551
1753
  }>>>>;
1754
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1755
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1756
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
1757
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1758
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1759
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1760
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1761
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1762
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1763
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1764
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1765
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1766
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1767
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1768
+ }, "strip", z.ZodTypeAny, {
1769
+ hideProductCode?: boolean | null | undefined;
1770
+ mode?: "POS" | "KIOSK" | null | undefined;
1771
+ headerText?: string | null | undefined;
1772
+ footerText?: string | null | undefined;
1773
+ invoicePrefix?: string | null | undefined;
1774
+ fontSize?: number | null | undefined;
1775
+ needAddress?: boolean | null | undefined;
1776
+ needPhoneNo?: boolean | null | undefined;
1777
+ needEmail?: boolean | null | undefined;
1778
+ hideZeroPriceAddon?: boolean | null | undefined;
1779
+ hideZeroPriceItem?: boolean | null | undefined;
1780
+ hideTaxSummary?: boolean | null | undefined;
1781
+ }, {
1782
+ hideProductCode?: boolean | null | undefined;
1783
+ mode?: "POS" | "KIOSK" | null | undefined;
1784
+ headerText?: string | null | undefined;
1785
+ footerText?: string | null | undefined;
1786
+ invoicePrefix?: string | null | undefined;
1787
+ fontSize?: number | null | undefined;
1788
+ needAddress?: boolean | null | undefined;
1789
+ needPhoneNo?: boolean | null | undefined;
1790
+ needEmail?: boolean | null | undefined;
1791
+ hideZeroPriceAddon?: boolean | null | undefined;
1792
+ hideZeroPriceItem?: boolean | null | undefined;
1793
+ hideTaxSummary?: boolean | null | undefined;
1794
+ }>>>;
1552
1795
  }, "strip", z.ZodTypeAny, {
1553
1796
  backup?: {
1554
1797
  type: "USB";
@@ -1556,6 +1799,21 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
1556
1799
  type: "PRINTER_ID";
1557
1800
  printerId: string;
1558
1801
  } | null | undefined;
1802
+ isFake?: boolean | null | undefined;
1803
+ receipt?: {
1804
+ hideProductCode?: boolean | null | undefined;
1805
+ mode?: "POS" | "KIOSK" | null | undefined;
1806
+ headerText?: string | null | undefined;
1807
+ footerText?: string | null | undefined;
1808
+ invoicePrefix?: string | null | undefined;
1809
+ fontSize?: number | null | undefined;
1810
+ needAddress?: boolean | null | undefined;
1811
+ needPhoneNo?: boolean | null | undefined;
1812
+ needEmail?: boolean | null | undefined;
1813
+ hideZeroPriceAddon?: boolean | null | undefined;
1814
+ hideZeroPriceItem?: boolean | null | undefined;
1815
+ hideTaxSummary?: boolean | null | undefined;
1816
+ } | null | undefined;
1559
1817
  name: string;
1560
1818
  id: string;
1561
1819
  hardware: {
@@ -1612,6 +1870,21 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
1612
1870
  type: "PRINTER_ID";
1613
1871
  printerId: string;
1614
1872
  } | null | undefined;
1873
+ isFake?: boolean | null | undefined;
1874
+ receipt?: {
1875
+ hideProductCode?: boolean | null | undefined;
1876
+ mode?: "POS" | "KIOSK" | null | undefined;
1877
+ headerText?: string | null | undefined;
1878
+ footerText?: string | null | undefined;
1879
+ invoicePrefix?: string | null | undefined;
1880
+ fontSize?: number | null | undefined;
1881
+ needAddress?: boolean | null | undefined;
1882
+ needPhoneNo?: boolean | null | undefined;
1883
+ needEmail?: boolean | null | undefined;
1884
+ hideZeroPriceAddon?: boolean | null | undefined;
1885
+ hideZeroPriceItem?: boolean | null | undefined;
1886
+ hideTaxSummary?: boolean | null | undefined;
1887
+ } | null | undefined;
1615
1888
  name: string;
1616
1889
  id: string;
1617
1890
  hardware: {
@@ -1694,6 +1967,21 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
1694
1967
  type: "PRINTER_ID";
1695
1968
  printerId: string;
1696
1969
  } | null | undefined;
1970
+ isFake?: boolean | null | undefined;
1971
+ receipt?: {
1972
+ hideProductCode?: boolean | null | undefined;
1973
+ mode?: "POS" | "KIOSK" | null | undefined;
1974
+ headerText?: string | null | undefined;
1975
+ footerText?: string | null | undefined;
1976
+ invoicePrefix?: string | null | undefined;
1977
+ fontSize?: number | null | undefined;
1978
+ needAddress?: boolean | null | undefined;
1979
+ needPhoneNo?: boolean | null | undefined;
1980
+ needEmail?: boolean | null | undefined;
1981
+ hideZeroPriceAddon?: boolean | null | undefined;
1982
+ hideZeroPriceItem?: boolean | null | undefined;
1983
+ hideTaxSummary?: boolean | null | undefined;
1984
+ } | null | undefined;
1697
1985
  name: string;
1698
1986
  id: string;
1699
1987
  hardware: {
@@ -1792,6 +2080,21 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
1792
2080
  type: "PRINTER_ID";
1793
2081
  printerId: string;
1794
2082
  } | null | undefined;
2083
+ isFake?: boolean | null | undefined;
2084
+ receipt?: {
2085
+ hideProductCode?: boolean | null | undefined;
2086
+ mode?: "POS" | "KIOSK" | null | undefined;
2087
+ headerText?: string | null | undefined;
2088
+ footerText?: string | null | undefined;
2089
+ invoicePrefix?: string | null | undefined;
2090
+ fontSize?: number | null | undefined;
2091
+ needAddress?: boolean | null | undefined;
2092
+ needPhoneNo?: boolean | null | undefined;
2093
+ needEmail?: boolean | null | undefined;
2094
+ hideZeroPriceAddon?: boolean | null | undefined;
2095
+ hideZeroPriceItem?: boolean | null | undefined;
2096
+ hideTaxSummary?: boolean | null | undefined;
2097
+ } | null | undefined;
1795
2098
  name: string;
1796
2099
  id: string;
1797
2100
  hardware: {
@@ -1885,6 +2188,21 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
1885
2188
  type: "PRINTER_ID";
1886
2189
  printerId: string;
1887
2190
  } | null | undefined;
2191
+ isFake?: boolean | null | undefined;
2192
+ receipt?: {
2193
+ hideProductCode?: boolean | null | undefined;
2194
+ mode?: "POS" | "KIOSK" | null | undefined;
2195
+ headerText?: string | null | undefined;
2196
+ footerText?: string | null | undefined;
2197
+ invoicePrefix?: string | null | undefined;
2198
+ fontSize?: number | null | undefined;
2199
+ needAddress?: boolean | null | undefined;
2200
+ needPhoneNo?: boolean | null | undefined;
2201
+ needEmail?: boolean | null | undefined;
2202
+ hideZeroPriceAddon?: boolean | null | undefined;
2203
+ hideZeroPriceItem?: boolean | null | undefined;
2204
+ hideTaxSummary?: boolean | null | undefined;
2205
+ } | null | undefined;
1888
2206
  name: string;
1889
2207
  id: string;
1890
2208
  hardware: {
@@ -1991,6 +2309,21 @@ export declare const KioskRestaurantSettingDto: z.ZodObject<{
1991
2309
  type: "PRINTER_ID";
1992
2310
  printerId: string;
1993
2311
  } | null | undefined;
2312
+ isFake?: boolean | null | undefined;
2313
+ receipt?: {
2314
+ hideProductCode?: boolean | null | undefined;
2315
+ mode?: "POS" | "KIOSK" | null | undefined;
2316
+ headerText?: string | null | undefined;
2317
+ footerText?: string | null | undefined;
2318
+ invoicePrefix?: string | null | undefined;
2319
+ fontSize?: number | null | undefined;
2320
+ needAddress?: boolean | null | undefined;
2321
+ needPhoneNo?: boolean | null | undefined;
2322
+ needEmail?: boolean | null | undefined;
2323
+ hideZeroPriceAddon?: boolean | null | undefined;
2324
+ hideZeroPriceItem?: boolean | null | undefined;
2325
+ hideTaxSummary?: boolean | null | undefined;
2326
+ } | null | undefined;
1994
2327
  name: string;
1995
2328
  id: string;
1996
2329
  hardware: {
@@ -2357,6 +2690,47 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
2357
2690
  type: "PRINTER_ID";
2358
2691
  printerId: string;
2359
2692
  }>>>>;
2693
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2694
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2695
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
2696
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2697
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2698
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2699
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2700
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2701
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2702
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2703
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2704
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2705
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2706
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2707
+ }, "strip", z.ZodTypeAny, {
2708
+ hideProductCode?: boolean | null | undefined;
2709
+ mode?: "POS" | "KIOSK" | null | undefined;
2710
+ headerText?: string | null | undefined;
2711
+ footerText?: string | null | undefined;
2712
+ invoicePrefix?: string | null | undefined;
2713
+ fontSize?: number | null | undefined;
2714
+ needAddress?: boolean | null | undefined;
2715
+ needPhoneNo?: boolean | null | undefined;
2716
+ needEmail?: boolean | null | undefined;
2717
+ hideZeroPriceAddon?: boolean | null | undefined;
2718
+ hideZeroPriceItem?: boolean | null | undefined;
2719
+ hideTaxSummary?: boolean | null | undefined;
2720
+ }, {
2721
+ hideProductCode?: boolean | null | undefined;
2722
+ mode?: "POS" | "KIOSK" | null | undefined;
2723
+ headerText?: string | null | undefined;
2724
+ footerText?: string | null | undefined;
2725
+ invoicePrefix?: string | null | undefined;
2726
+ fontSize?: number | null | undefined;
2727
+ needAddress?: boolean | null | undefined;
2728
+ needPhoneNo?: boolean | null | undefined;
2729
+ needEmail?: boolean | null | undefined;
2730
+ hideZeroPriceAddon?: boolean | null | undefined;
2731
+ hideZeroPriceItem?: boolean | null | undefined;
2732
+ hideTaxSummary?: boolean | null | undefined;
2733
+ }>>>;
2360
2734
  }, "strip", z.ZodTypeAny, {
2361
2735
  backup?: {
2362
2736
  type: "USB";
@@ -2364,6 +2738,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
2364
2738
  type: "PRINTER_ID";
2365
2739
  printerId: string;
2366
2740
  } | null | undefined;
2741
+ isFake?: boolean | null | undefined;
2742
+ receipt?: {
2743
+ hideProductCode?: boolean | null | undefined;
2744
+ mode?: "POS" | "KIOSK" | null | undefined;
2745
+ headerText?: string | null | undefined;
2746
+ footerText?: string | null | undefined;
2747
+ invoicePrefix?: string | null | undefined;
2748
+ fontSize?: number | null | undefined;
2749
+ needAddress?: boolean | null | undefined;
2750
+ needPhoneNo?: boolean | null | undefined;
2751
+ needEmail?: boolean | null | undefined;
2752
+ hideZeroPriceAddon?: boolean | null | undefined;
2753
+ hideZeroPriceItem?: boolean | null | undefined;
2754
+ hideTaxSummary?: boolean | null | undefined;
2755
+ } | null | undefined;
2367
2756
  name: string;
2368
2757
  id: string;
2369
2758
  hardware: {
@@ -2420,6 +2809,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
2420
2809
  type: "PRINTER_ID";
2421
2810
  printerId: string;
2422
2811
  } | null | undefined;
2812
+ isFake?: boolean | null | undefined;
2813
+ receipt?: {
2814
+ hideProductCode?: boolean | null | undefined;
2815
+ mode?: "POS" | "KIOSK" | null | undefined;
2816
+ headerText?: string | null | undefined;
2817
+ footerText?: string | null | undefined;
2818
+ invoicePrefix?: string | null | undefined;
2819
+ fontSize?: number | null | undefined;
2820
+ needAddress?: boolean | null | undefined;
2821
+ needPhoneNo?: boolean | null | undefined;
2822
+ needEmail?: boolean | null | undefined;
2823
+ hideZeroPriceAddon?: boolean | null | undefined;
2824
+ hideZeroPriceItem?: boolean | null | undefined;
2825
+ hideTaxSummary?: boolean | null | undefined;
2826
+ } | null | undefined;
2423
2827
  name: string;
2424
2828
  id: string;
2425
2829
  hardware: {
@@ -2502,6 +2906,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
2502
2906
  type: "PRINTER_ID";
2503
2907
  printerId: string;
2504
2908
  } | null | undefined;
2909
+ isFake?: boolean | null | undefined;
2910
+ receipt?: {
2911
+ hideProductCode?: boolean | null | undefined;
2912
+ mode?: "POS" | "KIOSK" | null | undefined;
2913
+ headerText?: string | null | undefined;
2914
+ footerText?: string | null | undefined;
2915
+ invoicePrefix?: string | null | undefined;
2916
+ fontSize?: number | null | undefined;
2917
+ needAddress?: boolean | null | undefined;
2918
+ needPhoneNo?: boolean | null | undefined;
2919
+ needEmail?: boolean | null | undefined;
2920
+ hideZeroPriceAddon?: boolean | null | undefined;
2921
+ hideZeroPriceItem?: boolean | null | undefined;
2922
+ hideTaxSummary?: boolean | null | undefined;
2923
+ } | null | undefined;
2505
2924
  name: string;
2506
2925
  id: string;
2507
2926
  hardware: {
@@ -2600,6 +3019,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
2600
3019
  type: "PRINTER_ID";
2601
3020
  printerId: string;
2602
3021
  } | null | undefined;
3022
+ isFake?: boolean | null | undefined;
3023
+ receipt?: {
3024
+ hideProductCode?: boolean | null | undefined;
3025
+ mode?: "POS" | "KIOSK" | null | undefined;
3026
+ headerText?: string | null | undefined;
3027
+ footerText?: string | null | undefined;
3028
+ invoicePrefix?: string | null | undefined;
3029
+ fontSize?: number | null | undefined;
3030
+ needAddress?: boolean | null | undefined;
3031
+ needPhoneNo?: boolean | null | undefined;
3032
+ needEmail?: boolean | null | undefined;
3033
+ hideZeroPriceAddon?: boolean | null | undefined;
3034
+ hideZeroPriceItem?: boolean | null | undefined;
3035
+ hideTaxSummary?: boolean | null | undefined;
3036
+ } | null | undefined;
2603
3037
  name: string;
2604
3038
  id: string;
2605
3039
  hardware: {
@@ -2973,6 +3407,47 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
2973
3407
  type: "PRINTER_ID";
2974
3408
  printerId: string;
2975
3409
  }>>>>;
3410
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3411
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3412
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
3413
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3414
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3415
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3416
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
3417
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3418
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3419
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3420
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3421
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3422
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3423
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3424
+ }, "strip", z.ZodTypeAny, {
3425
+ hideProductCode?: boolean | null | undefined;
3426
+ mode?: "POS" | "KIOSK" | null | undefined;
3427
+ headerText?: string | null | undefined;
3428
+ footerText?: string | null | undefined;
3429
+ invoicePrefix?: string | null | undefined;
3430
+ fontSize?: number | null | undefined;
3431
+ needAddress?: boolean | null | undefined;
3432
+ needPhoneNo?: boolean | null | undefined;
3433
+ needEmail?: boolean | null | undefined;
3434
+ hideZeroPriceAddon?: boolean | null | undefined;
3435
+ hideZeroPriceItem?: boolean | null | undefined;
3436
+ hideTaxSummary?: boolean | null | undefined;
3437
+ }, {
3438
+ hideProductCode?: boolean | null | undefined;
3439
+ mode?: "POS" | "KIOSK" | null | undefined;
3440
+ headerText?: string | null | undefined;
3441
+ footerText?: string | null | undefined;
3442
+ invoicePrefix?: string | null | undefined;
3443
+ fontSize?: number | null | undefined;
3444
+ needAddress?: boolean | null | undefined;
3445
+ needPhoneNo?: boolean | null | undefined;
3446
+ needEmail?: boolean | null | undefined;
3447
+ hideZeroPriceAddon?: boolean | null | undefined;
3448
+ hideZeroPriceItem?: boolean | null | undefined;
3449
+ hideTaxSummary?: boolean | null | undefined;
3450
+ }>>>;
2976
3451
  }, "strip", z.ZodTypeAny, {
2977
3452
  backup?: {
2978
3453
  type: "USB";
@@ -2980,6 +3455,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
2980
3455
  type: "PRINTER_ID";
2981
3456
  printerId: string;
2982
3457
  } | null | undefined;
3458
+ isFake?: boolean | null | undefined;
3459
+ receipt?: {
3460
+ hideProductCode?: boolean | null | undefined;
3461
+ mode?: "POS" | "KIOSK" | null | undefined;
3462
+ headerText?: string | null | undefined;
3463
+ footerText?: string | null | undefined;
3464
+ invoicePrefix?: string | null | undefined;
3465
+ fontSize?: number | null | undefined;
3466
+ needAddress?: boolean | null | undefined;
3467
+ needPhoneNo?: boolean | null | undefined;
3468
+ needEmail?: boolean | null | undefined;
3469
+ hideZeroPriceAddon?: boolean | null | undefined;
3470
+ hideZeroPriceItem?: boolean | null | undefined;
3471
+ hideTaxSummary?: boolean | null | undefined;
3472
+ } | null | undefined;
2983
3473
  name: string;
2984
3474
  id: string;
2985
3475
  hardware: {
@@ -3036,6 +3526,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
3036
3526
  type: "PRINTER_ID";
3037
3527
  printerId: string;
3038
3528
  } | null | undefined;
3529
+ isFake?: boolean | null | undefined;
3530
+ receipt?: {
3531
+ hideProductCode?: boolean | null | undefined;
3532
+ mode?: "POS" | "KIOSK" | null | undefined;
3533
+ headerText?: string | null | undefined;
3534
+ footerText?: string | null | undefined;
3535
+ invoicePrefix?: string | null | undefined;
3536
+ fontSize?: number | null | undefined;
3537
+ needAddress?: boolean | null | undefined;
3538
+ needPhoneNo?: boolean | null | undefined;
3539
+ needEmail?: boolean | null | undefined;
3540
+ hideZeroPriceAddon?: boolean | null | undefined;
3541
+ hideZeroPriceItem?: boolean | null | undefined;
3542
+ hideTaxSummary?: boolean | null | undefined;
3543
+ } | null | undefined;
3039
3544
  name: string;
3040
3545
  id: string;
3041
3546
  hardware: {
@@ -3118,6 +3623,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
3118
3623
  type: "PRINTER_ID";
3119
3624
  printerId: string;
3120
3625
  } | null | undefined;
3626
+ isFake?: boolean | null | undefined;
3627
+ receipt?: {
3628
+ hideProductCode?: boolean | null | undefined;
3629
+ mode?: "POS" | "KIOSK" | null | undefined;
3630
+ headerText?: string | null | undefined;
3631
+ footerText?: string | null | undefined;
3632
+ invoicePrefix?: string | null | undefined;
3633
+ fontSize?: number | null | undefined;
3634
+ needAddress?: boolean | null | undefined;
3635
+ needPhoneNo?: boolean | null | undefined;
3636
+ needEmail?: boolean | null | undefined;
3637
+ hideZeroPriceAddon?: boolean | null | undefined;
3638
+ hideZeroPriceItem?: boolean | null | undefined;
3639
+ hideTaxSummary?: boolean | null | undefined;
3640
+ } | null | undefined;
3121
3641
  name: string;
3122
3642
  id: string;
3123
3643
  hardware: {
@@ -3216,6 +3736,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
3216
3736
  type: "PRINTER_ID";
3217
3737
  printerId: string;
3218
3738
  } | null | undefined;
3739
+ isFake?: boolean | null | undefined;
3740
+ receipt?: {
3741
+ hideProductCode?: boolean | null | undefined;
3742
+ mode?: "POS" | "KIOSK" | null | undefined;
3743
+ headerText?: string | null | undefined;
3744
+ footerText?: string | null | undefined;
3745
+ invoicePrefix?: string | null | undefined;
3746
+ fontSize?: number | null | undefined;
3747
+ needAddress?: boolean | null | undefined;
3748
+ needPhoneNo?: boolean | null | undefined;
3749
+ needEmail?: boolean | null | undefined;
3750
+ hideZeroPriceAddon?: boolean | null | undefined;
3751
+ hideZeroPriceItem?: boolean | null | undefined;
3752
+ hideTaxSummary?: boolean | null | undefined;
3753
+ } | null | undefined;
3219
3754
  name: string;
3220
3755
  id: string;
3221
3756
  hardware: {
@@ -3295,6 +3830,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
3295
3830
  type: "PRINTER_ID";
3296
3831
  printerId: string;
3297
3832
  } | null | undefined;
3833
+ isFake?: boolean | null | undefined;
3834
+ receipt?: {
3835
+ hideProductCode?: boolean | null | undefined;
3836
+ mode?: "POS" | "KIOSK" | null | undefined;
3837
+ headerText?: string | null | undefined;
3838
+ footerText?: string | null | undefined;
3839
+ invoicePrefix?: string | null | undefined;
3840
+ fontSize?: number | null | undefined;
3841
+ needAddress?: boolean | null | undefined;
3842
+ needPhoneNo?: boolean | null | undefined;
3843
+ needEmail?: boolean | null | undefined;
3844
+ hideZeroPriceAddon?: boolean | null | undefined;
3845
+ hideZeroPriceItem?: boolean | null | undefined;
3846
+ hideTaxSummary?: boolean | null | undefined;
3847
+ } | null | undefined;
3298
3848
  name: string;
3299
3849
  id: string;
3300
3850
  hardware: {
@@ -3396,6 +3946,21 @@ export declare const KioskRestaurantSettingByTokenDto: z.ZodObject<z.extendShape
3396
3946
  type: "PRINTER_ID";
3397
3947
  printerId: string;
3398
3948
  } | null | undefined;
3949
+ isFake?: boolean | null | undefined;
3950
+ receipt?: {
3951
+ hideProductCode?: boolean | null | undefined;
3952
+ mode?: "POS" | "KIOSK" | null | undefined;
3953
+ headerText?: string | null | undefined;
3954
+ footerText?: string | null | undefined;
3955
+ invoicePrefix?: string | null | undefined;
3956
+ fontSize?: number | null | undefined;
3957
+ needAddress?: boolean | null | undefined;
3958
+ needPhoneNo?: boolean | null | undefined;
3959
+ needEmail?: boolean | null | undefined;
3960
+ hideZeroPriceAddon?: boolean | null | undefined;
3961
+ hideZeroPriceItem?: boolean | null | undefined;
3962
+ hideTaxSummary?: boolean | null | undefined;
3963
+ } | null | undefined;
3399
3964
  name: string;
3400
3965
  id: string;
3401
3966
  hardware: {