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

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-BmMMjoeA.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DnnwwP5B.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-Hyy3Df9q.js} +3 -3
  3. package/dist/{KioskSettingView-CAwO1SeK.js → KioskSettingView-DiH4FW0p.js} +3 -3
  4. package/dist/{KioskView-pvtKqW3e.js → KioskView-CPQXJGNr.js} +4 -4
  5. package/dist/OrderSettingsView-Crt8n2mi.js +32126 -0
  6. package/dist/{app-MjAVO4M6.js → app-DkD1jT4J.js} +20 -6
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-ClRk0CwC.js → dayjs.min-BD7tcEKV.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-CFTZXoFP.js} +6 -6
  17. package/dist/{index-BWDduW_i.js → index-CYlX1z6-.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-BUAF-sBn.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
@@ -316,6 +316,47 @@ export declare const FdoKioskDevice: z.ZodObject<{
316
316
  type: "PRINTER_ID";
317
317
  printerId: string;
318
318
  }>>>>;
319
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
320
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
321
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
322
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
323
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
324
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
325
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
326
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
327
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
328
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
329
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
330
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
331
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
332
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
333
+ }, "strip", z.ZodTypeAny, {
334
+ hideProductCode?: boolean | null | undefined;
335
+ mode?: "POS" | "KIOSK" | null | undefined;
336
+ headerText?: string | null | undefined;
337
+ footerText?: string | null | undefined;
338
+ invoicePrefix?: string | null | undefined;
339
+ fontSize?: number | null | undefined;
340
+ needAddress?: boolean | null | undefined;
341
+ needPhoneNo?: boolean | null | undefined;
342
+ needEmail?: boolean | null | undefined;
343
+ hideZeroPriceAddon?: boolean | null | undefined;
344
+ hideZeroPriceItem?: boolean | null | undefined;
345
+ hideTaxSummary?: boolean | null | undefined;
346
+ }, {
347
+ hideProductCode?: boolean | null | undefined;
348
+ mode?: "POS" | "KIOSK" | null | undefined;
349
+ headerText?: string | null | undefined;
350
+ footerText?: string | null | undefined;
351
+ invoicePrefix?: string | null | undefined;
352
+ fontSize?: number | null | undefined;
353
+ needAddress?: boolean | null | undefined;
354
+ needPhoneNo?: boolean | null | undefined;
355
+ needEmail?: boolean | null | undefined;
356
+ hideZeroPriceAddon?: boolean | null | undefined;
357
+ hideZeroPriceItem?: boolean | null | undefined;
358
+ hideTaxSummary?: boolean | null | undefined;
359
+ }>>>;
319
360
  }, "strip", z.ZodTypeAny, {
320
361
  backup?: {
321
362
  type: "USB";
@@ -323,6 +364,21 @@ export declare const FdoKioskDevice: z.ZodObject<{
323
364
  type: "PRINTER_ID";
324
365
  printerId: string;
325
366
  } | null | undefined;
367
+ isFake?: boolean | null | undefined;
368
+ receipt?: {
369
+ hideProductCode?: boolean | null | undefined;
370
+ mode?: "POS" | "KIOSK" | null | undefined;
371
+ headerText?: string | null | undefined;
372
+ footerText?: string | null | undefined;
373
+ invoicePrefix?: string | null | undefined;
374
+ fontSize?: number | null | undefined;
375
+ needAddress?: boolean | null | undefined;
376
+ needPhoneNo?: boolean | null | undefined;
377
+ needEmail?: boolean | null | undefined;
378
+ hideZeroPriceAddon?: boolean | null | undefined;
379
+ hideZeroPriceItem?: boolean | null | undefined;
380
+ hideTaxSummary?: boolean | null | undefined;
381
+ } | null | undefined;
326
382
  name: string;
327
383
  id: string;
328
384
  hardware: {
@@ -379,6 +435,21 @@ export declare const FdoKioskDevice: z.ZodObject<{
379
435
  type: "PRINTER_ID";
380
436
  printerId: string;
381
437
  } | null | undefined;
438
+ isFake?: boolean | null | undefined;
439
+ receipt?: {
440
+ hideProductCode?: boolean | null | undefined;
441
+ mode?: "POS" | "KIOSK" | null | undefined;
442
+ headerText?: string | null | undefined;
443
+ footerText?: string | null | undefined;
444
+ invoicePrefix?: string | null | undefined;
445
+ fontSize?: number | null | undefined;
446
+ needAddress?: boolean | null | undefined;
447
+ needPhoneNo?: boolean | null | undefined;
448
+ needEmail?: boolean | null | undefined;
449
+ hideZeroPriceAddon?: boolean | null | undefined;
450
+ hideZeroPriceItem?: boolean | null | undefined;
451
+ hideTaxSummary?: boolean | null | undefined;
452
+ } | null | undefined;
382
453
  name: string;
383
454
  id: string;
384
455
  hardware: {
@@ -472,6 +543,21 @@ export declare const FdoKioskDevice: z.ZodObject<{
472
543
  type: "PRINTER_ID";
473
544
  printerId: string;
474
545
  } | null | undefined;
546
+ isFake?: boolean | null | undefined;
547
+ receipt?: {
548
+ hideProductCode?: boolean | null | undefined;
549
+ mode?: "POS" | "KIOSK" | null | undefined;
550
+ headerText?: string | null | undefined;
551
+ footerText?: string | null | undefined;
552
+ invoicePrefix?: string | null | undefined;
553
+ fontSize?: number | null | undefined;
554
+ needAddress?: boolean | null | undefined;
555
+ needPhoneNo?: boolean | null | undefined;
556
+ needEmail?: boolean | null | undefined;
557
+ hideZeroPriceAddon?: boolean | null | undefined;
558
+ hideZeroPriceItem?: boolean | null | undefined;
559
+ hideTaxSummary?: boolean | null | undefined;
560
+ } | null | undefined;
475
561
  name: string;
476
562
  id: string;
477
563
  hardware: {
@@ -559,6 +645,21 @@ export declare const FdoKioskDevice: z.ZodObject<{
559
645
  type: "PRINTER_ID";
560
646
  printerId: string;
561
647
  } | null | undefined;
648
+ isFake?: boolean | null | undefined;
649
+ receipt?: {
650
+ hideProductCode?: boolean | null | undefined;
651
+ mode?: "POS" | "KIOSK" | null | undefined;
652
+ headerText?: string | null | undefined;
653
+ footerText?: string | null | undefined;
654
+ invoicePrefix?: string | null | undefined;
655
+ fontSize?: number | null | undefined;
656
+ needAddress?: boolean | null | undefined;
657
+ needPhoneNo?: boolean | null | undefined;
658
+ needEmail?: boolean | null | undefined;
659
+ hideZeroPriceAddon?: boolean | null | undefined;
660
+ hideZeroPriceItem?: boolean | null | undefined;
661
+ hideTaxSummary?: boolean | null | undefined;
662
+ } | null | undefined;
562
663
  name: string;
563
664
  id: string;
564
665
  hardware: {
@@ -922,6 +1023,47 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
922
1023
  type: "PRINTER_ID";
923
1024
  printerId: string;
924
1025
  }>>>>;
1026
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1027
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1028
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
1029
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1030
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1031
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1032
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1033
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1034
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1035
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1036
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1037
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1038
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1039
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1040
+ }, "strip", z.ZodTypeAny, {
1041
+ hideProductCode?: boolean | null | undefined;
1042
+ mode?: "POS" | "KIOSK" | null | undefined;
1043
+ headerText?: string | null | undefined;
1044
+ footerText?: string | null | undefined;
1045
+ invoicePrefix?: string | null | undefined;
1046
+ fontSize?: number | null | undefined;
1047
+ needAddress?: boolean | null | undefined;
1048
+ needPhoneNo?: boolean | null | undefined;
1049
+ needEmail?: boolean | null | undefined;
1050
+ hideZeroPriceAddon?: boolean | null | undefined;
1051
+ hideZeroPriceItem?: boolean | null | undefined;
1052
+ hideTaxSummary?: boolean | null | undefined;
1053
+ }, {
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
+ }>>>;
925
1067
  }, "strip", z.ZodTypeAny, {
926
1068
  backup?: {
927
1069
  type: "USB";
@@ -929,6 +1071,21 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
929
1071
  type: "PRINTER_ID";
930
1072
  printerId: string;
931
1073
  } | null | undefined;
1074
+ isFake?: boolean | null | undefined;
1075
+ receipt?: {
1076
+ hideProductCode?: boolean | null | undefined;
1077
+ mode?: "POS" | "KIOSK" | null | undefined;
1078
+ headerText?: string | null | undefined;
1079
+ footerText?: string | null | undefined;
1080
+ invoicePrefix?: string | null | undefined;
1081
+ fontSize?: number | null | undefined;
1082
+ needAddress?: boolean | null | undefined;
1083
+ needPhoneNo?: boolean | null | undefined;
1084
+ needEmail?: boolean | null | undefined;
1085
+ hideZeroPriceAddon?: boolean | null | undefined;
1086
+ hideZeroPriceItem?: boolean | null | undefined;
1087
+ hideTaxSummary?: boolean | null | undefined;
1088
+ } | null | undefined;
932
1089
  name: string;
933
1090
  id: string;
934
1091
  hardware: {
@@ -985,6 +1142,21 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
985
1142
  type: "PRINTER_ID";
986
1143
  printerId: string;
987
1144
  } | null | undefined;
1145
+ isFake?: boolean | null | undefined;
1146
+ receipt?: {
1147
+ hideProductCode?: boolean | null | undefined;
1148
+ mode?: "POS" | "KIOSK" | null | undefined;
1149
+ headerText?: string | null | undefined;
1150
+ footerText?: string | null | undefined;
1151
+ invoicePrefix?: string | null | undefined;
1152
+ fontSize?: number | null | undefined;
1153
+ needAddress?: boolean | null | undefined;
1154
+ needPhoneNo?: boolean | null | undefined;
1155
+ needEmail?: boolean | null | undefined;
1156
+ hideZeroPriceAddon?: boolean | null | undefined;
1157
+ hideZeroPriceItem?: boolean | null | undefined;
1158
+ hideTaxSummary?: boolean | null | undefined;
1159
+ } | null | undefined;
988
1160
  name: string;
989
1161
  id: string;
990
1162
  hardware: {
@@ -1078,6 +1250,21 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1078
1250
  type: "PRINTER_ID";
1079
1251
  printerId: string;
1080
1252
  } | null | undefined;
1253
+ isFake?: boolean | null | undefined;
1254
+ receipt?: {
1255
+ hideProductCode?: boolean | null | undefined;
1256
+ mode?: "POS" | "KIOSK" | null | undefined;
1257
+ headerText?: string | null | undefined;
1258
+ footerText?: string | null | undefined;
1259
+ invoicePrefix?: string | null | undefined;
1260
+ fontSize?: number | null | undefined;
1261
+ needAddress?: boolean | null | undefined;
1262
+ needPhoneNo?: boolean | null | undefined;
1263
+ needEmail?: boolean | null | undefined;
1264
+ hideZeroPriceAddon?: boolean | null | undefined;
1265
+ hideZeroPriceItem?: boolean | null | undefined;
1266
+ hideTaxSummary?: boolean | null | undefined;
1267
+ } | null | undefined;
1081
1268
  name: string;
1082
1269
  id: string;
1083
1270
  hardware: {
@@ -1165,6 +1352,21 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1165
1352
  type: "PRINTER_ID";
1166
1353
  printerId: string;
1167
1354
  } | null | undefined;
1355
+ isFake?: boolean | null | undefined;
1356
+ receipt?: {
1357
+ hideProductCode?: boolean | null | undefined;
1358
+ mode?: "POS" | "KIOSK" | null | undefined;
1359
+ headerText?: string | null | undefined;
1360
+ footerText?: string | null | undefined;
1361
+ invoicePrefix?: string | null | undefined;
1362
+ fontSize?: number | null | undefined;
1363
+ needAddress?: boolean | null | undefined;
1364
+ needPhoneNo?: boolean | null | undefined;
1365
+ needEmail?: boolean | null | undefined;
1366
+ hideZeroPriceAddon?: boolean | null | undefined;
1367
+ hideZeroPriceItem?: boolean | null | undefined;
1368
+ hideTaxSummary?: boolean | null | undefined;
1369
+ } | null | undefined;
1168
1370
  name: string;
1169
1371
  id: string;
1170
1372
  hardware: {
@@ -1269,6 +1471,21 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1269
1471
  type: "PRINTER_ID";
1270
1472
  printerId: string;
1271
1473
  } | null | undefined;
1474
+ isFake?: boolean | null | undefined;
1475
+ receipt?: {
1476
+ hideProductCode?: boolean | null | undefined;
1477
+ mode?: "POS" | "KIOSK" | null | undefined;
1478
+ headerText?: string | null | undefined;
1479
+ footerText?: string | null | undefined;
1480
+ invoicePrefix?: string | null | undefined;
1481
+ fontSize?: number | null | undefined;
1482
+ needAddress?: boolean | null | undefined;
1483
+ needPhoneNo?: boolean | null | undefined;
1484
+ needEmail?: boolean | null | undefined;
1485
+ hideZeroPriceAddon?: boolean | null | undefined;
1486
+ hideZeroPriceItem?: boolean | null | undefined;
1487
+ hideTaxSummary?: boolean | null | undefined;
1488
+ } | null | undefined;
1272
1489
  name: string;
1273
1490
  id: string;
1274
1491
  hardware: {
@@ -1364,6 +1581,21 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1364
1581
  type: "PRINTER_ID";
1365
1582
  printerId: string;
1366
1583
  } | null | undefined;
1584
+ isFake?: boolean | null | undefined;
1585
+ receipt?: {
1586
+ hideProductCode?: boolean | null | undefined;
1587
+ mode?: "POS" | "KIOSK" | null | undefined;
1588
+ headerText?: string | null | undefined;
1589
+ footerText?: string | null | undefined;
1590
+ invoicePrefix?: string | null | undefined;
1591
+ fontSize?: number | null | undefined;
1592
+ needAddress?: boolean | null | undefined;
1593
+ needPhoneNo?: boolean | null | undefined;
1594
+ needEmail?: boolean | null | undefined;
1595
+ hideZeroPriceAddon?: boolean | null | undefined;
1596
+ hideZeroPriceItem?: boolean | null | undefined;
1597
+ hideTaxSummary?: boolean | null | undefined;
1598
+ } | null | undefined;
1367
1599
  name: string;
1368
1600
  id: string;
1369
1601
  hardware: {
@@ -1730,6 +1962,47 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
1730
1962
  type: "PRINTER_ID";
1731
1963
  printerId: string;
1732
1964
  }>>>>;
1965
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1966
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1967
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
1968
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1969
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1970
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1971
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1972
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1973
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1974
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1975
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1976
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1977
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1978
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1979
+ }, "strip", z.ZodTypeAny, {
1980
+ hideProductCode?: boolean | null | undefined;
1981
+ mode?: "POS" | "KIOSK" | null | undefined;
1982
+ headerText?: string | null | undefined;
1983
+ footerText?: string | null | undefined;
1984
+ invoicePrefix?: string | null | undefined;
1985
+ fontSize?: number | null | undefined;
1986
+ needAddress?: boolean | null | undefined;
1987
+ needPhoneNo?: boolean | null | undefined;
1988
+ needEmail?: boolean | null | undefined;
1989
+ hideZeroPriceAddon?: boolean | null | undefined;
1990
+ hideZeroPriceItem?: boolean | null | undefined;
1991
+ hideTaxSummary?: boolean | null | undefined;
1992
+ }, {
1993
+ hideProductCode?: boolean | null | undefined;
1994
+ mode?: "POS" | "KIOSK" | null | undefined;
1995
+ headerText?: string | null | undefined;
1996
+ footerText?: string | null | undefined;
1997
+ invoicePrefix?: string | null | undefined;
1998
+ fontSize?: number | null | undefined;
1999
+ needAddress?: boolean | null | undefined;
2000
+ needPhoneNo?: boolean | null | undefined;
2001
+ needEmail?: boolean | null | undefined;
2002
+ hideZeroPriceAddon?: boolean | null | undefined;
2003
+ hideZeroPriceItem?: boolean | null | undefined;
2004
+ hideTaxSummary?: boolean | null | undefined;
2005
+ }>>>;
1733
2006
  }, "strip", z.ZodTypeAny, {
1734
2007
  backup?: {
1735
2008
  type: "USB";
@@ -1737,6 +2010,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
1737
2010
  type: "PRINTER_ID";
1738
2011
  printerId: string;
1739
2012
  } | null | undefined;
2013
+ isFake?: boolean | null | undefined;
2014
+ receipt?: {
2015
+ hideProductCode?: boolean | null | undefined;
2016
+ mode?: "POS" | "KIOSK" | null | undefined;
2017
+ headerText?: string | null | undefined;
2018
+ footerText?: string | null | undefined;
2019
+ invoicePrefix?: string | null | undefined;
2020
+ fontSize?: number | null | undefined;
2021
+ needAddress?: boolean | null | undefined;
2022
+ needPhoneNo?: boolean | null | undefined;
2023
+ needEmail?: boolean | null | undefined;
2024
+ hideZeroPriceAddon?: boolean | null | undefined;
2025
+ hideZeroPriceItem?: boolean | null | undefined;
2026
+ hideTaxSummary?: boolean | null | undefined;
2027
+ } | null | undefined;
1740
2028
  name: string;
1741
2029
  id: string;
1742
2030
  hardware: {
@@ -1793,6 +2081,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
1793
2081
  type: "PRINTER_ID";
1794
2082
  printerId: string;
1795
2083
  } | null | undefined;
2084
+ isFake?: boolean | null | undefined;
2085
+ receipt?: {
2086
+ hideProductCode?: boolean | null | undefined;
2087
+ mode?: "POS" | "KIOSK" | null | undefined;
2088
+ headerText?: string | null | undefined;
2089
+ footerText?: string | null | undefined;
2090
+ invoicePrefix?: string | null | undefined;
2091
+ fontSize?: number | null | undefined;
2092
+ needAddress?: boolean | null | undefined;
2093
+ needPhoneNo?: boolean | null | undefined;
2094
+ needEmail?: boolean | null | undefined;
2095
+ hideZeroPriceAddon?: boolean | null | undefined;
2096
+ hideZeroPriceItem?: boolean | null | undefined;
2097
+ hideTaxSummary?: boolean | null | undefined;
2098
+ } | null | undefined;
1796
2099
  name: string;
1797
2100
  id: string;
1798
2101
  hardware: {
@@ -1886,6 +2189,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
1886
2189
  type: "PRINTER_ID";
1887
2190
  printerId: string;
1888
2191
  } | null | undefined;
2192
+ isFake?: boolean | null | undefined;
2193
+ receipt?: {
2194
+ hideProductCode?: boolean | null | undefined;
2195
+ mode?: "POS" | "KIOSK" | null | undefined;
2196
+ headerText?: string | null | undefined;
2197
+ footerText?: string | null | undefined;
2198
+ invoicePrefix?: string | null | undefined;
2199
+ fontSize?: number | null | undefined;
2200
+ needAddress?: boolean | null | undefined;
2201
+ needPhoneNo?: boolean | null | undefined;
2202
+ needEmail?: boolean | null | undefined;
2203
+ hideZeroPriceAddon?: boolean | null | undefined;
2204
+ hideZeroPriceItem?: boolean | null | undefined;
2205
+ hideTaxSummary?: boolean | null | undefined;
2206
+ } | null | undefined;
1889
2207
  name: string;
1890
2208
  id: string;
1891
2209
  hardware: {
@@ -1973,6 +2291,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
1973
2291
  type: "PRINTER_ID";
1974
2292
  printerId: string;
1975
2293
  } | null | undefined;
2294
+ isFake?: boolean | null | undefined;
2295
+ receipt?: {
2296
+ hideProductCode?: boolean | null | undefined;
2297
+ mode?: "POS" | "KIOSK" | null | undefined;
2298
+ headerText?: string | null | undefined;
2299
+ footerText?: string | null | undefined;
2300
+ invoicePrefix?: string | null | undefined;
2301
+ fontSize?: number | null | undefined;
2302
+ needAddress?: boolean | null | undefined;
2303
+ needPhoneNo?: boolean | null | undefined;
2304
+ needEmail?: boolean | null | undefined;
2305
+ hideZeroPriceAddon?: boolean | null | undefined;
2306
+ hideZeroPriceItem?: boolean | null | undefined;
2307
+ hideTaxSummary?: boolean | null | undefined;
2308
+ } | null | undefined;
1976
2309
  name: string;
1977
2310
  id: string;
1978
2311
  hardware: {
@@ -2346,6 +2679,47 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2346
2679
  type: "PRINTER_ID";
2347
2680
  printerId: string;
2348
2681
  }>>>>;
2682
+ isFake: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2683
+ receipt: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2684
+ mode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["KIOSK", "POS"]>>>;
2685
+ headerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2686
+ footerText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2687
+ invoicePrefix: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2688
+ fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2689
+ needAddress: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2690
+ needPhoneNo: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2691
+ needEmail: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2692
+ hideZeroPriceAddon: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2693
+ hideZeroPriceItem: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2694
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2695
+ hideTaxSummary: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2696
+ }, "strip", z.ZodTypeAny, {
2697
+ hideProductCode?: boolean | null | undefined;
2698
+ mode?: "POS" | "KIOSK" | null | undefined;
2699
+ headerText?: string | null | undefined;
2700
+ footerText?: string | null | undefined;
2701
+ invoicePrefix?: string | null | undefined;
2702
+ fontSize?: number | null | undefined;
2703
+ needAddress?: boolean | null | undefined;
2704
+ needPhoneNo?: boolean | null | undefined;
2705
+ needEmail?: boolean | null | undefined;
2706
+ hideZeroPriceAddon?: boolean | null | undefined;
2707
+ hideZeroPriceItem?: boolean | null | undefined;
2708
+ hideTaxSummary?: boolean | null | undefined;
2709
+ }, {
2710
+ hideProductCode?: boolean | null | undefined;
2711
+ mode?: "POS" | "KIOSK" | null | undefined;
2712
+ headerText?: string | null | undefined;
2713
+ footerText?: string | null | undefined;
2714
+ invoicePrefix?: string | null | undefined;
2715
+ fontSize?: number | null | undefined;
2716
+ needAddress?: boolean | null | undefined;
2717
+ needPhoneNo?: boolean | null | undefined;
2718
+ needEmail?: boolean | null | undefined;
2719
+ hideZeroPriceAddon?: boolean | null | undefined;
2720
+ hideZeroPriceItem?: boolean | null | undefined;
2721
+ hideTaxSummary?: boolean | null | undefined;
2722
+ }>>>;
2349
2723
  }, "strip", z.ZodTypeAny, {
2350
2724
  backup?: {
2351
2725
  type: "USB";
@@ -2353,6 +2727,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2353
2727
  type: "PRINTER_ID";
2354
2728
  printerId: string;
2355
2729
  } | null | undefined;
2730
+ isFake?: boolean | null | undefined;
2731
+ receipt?: {
2732
+ hideProductCode?: boolean | null | undefined;
2733
+ mode?: "POS" | "KIOSK" | null | undefined;
2734
+ headerText?: string | null | undefined;
2735
+ footerText?: string | null | undefined;
2736
+ invoicePrefix?: string | null | undefined;
2737
+ fontSize?: number | null | undefined;
2738
+ needAddress?: boolean | null | undefined;
2739
+ needPhoneNo?: boolean | null | undefined;
2740
+ needEmail?: boolean | null | undefined;
2741
+ hideZeroPriceAddon?: boolean | null | undefined;
2742
+ hideZeroPriceItem?: boolean | null | undefined;
2743
+ hideTaxSummary?: boolean | null | undefined;
2744
+ } | null | undefined;
2356
2745
  name: string;
2357
2746
  id: string;
2358
2747
  hardware: {
@@ -2409,6 +2798,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2409
2798
  type: "PRINTER_ID";
2410
2799
  printerId: string;
2411
2800
  } | null | undefined;
2801
+ isFake?: boolean | null | undefined;
2802
+ receipt?: {
2803
+ hideProductCode?: boolean | null | undefined;
2804
+ mode?: "POS" | "KIOSK" | null | undefined;
2805
+ headerText?: string | null | undefined;
2806
+ footerText?: string | null | undefined;
2807
+ invoicePrefix?: string | null | undefined;
2808
+ fontSize?: number | null | undefined;
2809
+ needAddress?: boolean | null | undefined;
2810
+ needPhoneNo?: boolean | null | undefined;
2811
+ needEmail?: boolean | null | undefined;
2812
+ hideZeroPriceAddon?: boolean | null | undefined;
2813
+ hideZeroPriceItem?: boolean | null | undefined;
2814
+ hideTaxSummary?: boolean | null | undefined;
2815
+ } | null | undefined;
2412
2816
  name: string;
2413
2817
  id: string;
2414
2818
  hardware: {
@@ -2502,6 +2906,21 @@ export declare const FdoRestaurantKioskSettingByToken: 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: {
@@ -2589,6 +3008,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2589
3008
  type: "PRINTER_ID";
2590
3009
  printerId: string;
2591
3010
  } | null | undefined;
3011
+ isFake?: boolean | null | undefined;
3012
+ receipt?: {
3013
+ hideProductCode?: boolean | null | undefined;
3014
+ mode?: "POS" | "KIOSK" | null | undefined;
3015
+ headerText?: string | null | undefined;
3016
+ footerText?: string | null | undefined;
3017
+ invoicePrefix?: string | null | undefined;
3018
+ fontSize?: number | null | undefined;
3019
+ needAddress?: boolean | null | undefined;
3020
+ needPhoneNo?: boolean | null | undefined;
3021
+ needEmail?: boolean | null | undefined;
3022
+ hideZeroPriceAddon?: boolean | null | undefined;
3023
+ hideZeroPriceItem?: boolean | null | undefined;
3024
+ hideTaxSummary?: boolean | null | undefined;
3025
+ } | null | undefined;
2592
3026
  name: string;
2593
3027
  id: string;
2594
3028
  hardware: {
@@ -2679,6 +3113,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2679
3113
  type: "PRINTER_ID";
2680
3114
  printerId: string;
2681
3115
  } | null | undefined;
3116
+ isFake?: boolean | null | undefined;
3117
+ receipt?: {
3118
+ hideProductCode?: boolean | null | undefined;
3119
+ mode?: "POS" | "KIOSK" | null | undefined;
3120
+ headerText?: string | null | undefined;
3121
+ footerText?: string | null | undefined;
3122
+ invoicePrefix?: string | null | undefined;
3123
+ fontSize?: number | null | undefined;
3124
+ needAddress?: boolean | null | undefined;
3125
+ needPhoneNo?: boolean | null | undefined;
3126
+ needEmail?: boolean | null | undefined;
3127
+ hideZeroPriceAddon?: boolean | null | undefined;
3128
+ hideZeroPriceItem?: boolean | null | undefined;
3129
+ hideTaxSummary?: boolean | null | undefined;
3130
+ } | null | undefined;
2682
3131
  name: string;
2683
3132
  id: string;
2684
3133
  hardware: {
@@ -2769,6 +3218,21 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2769
3218
  type: "PRINTER_ID";
2770
3219
  printerId: string;
2771
3220
  } | null | undefined;
3221
+ isFake?: boolean | null | undefined;
3222
+ receipt?: {
3223
+ hideProductCode?: boolean | null | undefined;
3224
+ mode?: "POS" | "KIOSK" | null | undefined;
3225
+ headerText?: string | null | undefined;
3226
+ footerText?: string | null | undefined;
3227
+ invoicePrefix?: string | null | undefined;
3228
+ fontSize?: number | null | undefined;
3229
+ needAddress?: boolean | null | undefined;
3230
+ needPhoneNo?: boolean | null | undefined;
3231
+ needEmail?: boolean | null | undefined;
3232
+ hideZeroPriceAddon?: boolean | null | undefined;
3233
+ hideZeroPriceItem?: boolean | null | undefined;
3234
+ hideTaxSummary?: boolean | null | undefined;
3235
+ } | null | undefined;
2772
3236
  name: string;
2773
3237
  id: string;
2774
3238
  hardware: {