@feedmepos/mf-order-setting 0.0.12 → 0.0.14-alpha

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 (91) hide show
  1. package/dist/KioskSettingView-DNN7VBM4.js +4 -0
  2. package/dist/{app-DnR4r5jW.js → app-CbKAPxxI.js} +42471 -41975
  3. package/dist/app.js +1 -1
  4. package/dist/frontend/mf-order/src/main.d.ts +472 -0
  5. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +12 -0
  6. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +1 -0
  7. package/dist/frontend/mf-order/src/views/order-settings/delivery/DeliverySetting.vue.d.ts +1 -1
  8. package/dist/frontend/mf-order/src/views/order-settings/delivery/inhouse/InHouseDelivery.vue.d.ts +0 -8
  9. package/dist/frontend/mf-order/src/views/order-settings/general/GeneralSetting.vue.d.ts +2 -0
  10. package/dist/frontend/mf-order/src/views/order-settings/pickup/PaymentSidesheet.vue.d.ts +2 -16
  11. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  12. package/dist/package/entity/booking/booking.do.d.ts +60 -1025
  13. package/dist/package/entity/delivery/delivery.dto.d.ts +39 -208
  14. package/dist/package/entity/delivery/gateway/pandago.dto.d.ts +6 -6
  15. package/dist/package/entity/food-court/order.dto.d.ts +1607 -13450
  16. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +1413 -291
  17. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +602 -99
  18. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +1182 -154
  19. package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +66 -875
  20. package/dist/package/entity/order/delivery/delivery.do.d.ts +12 -0
  21. package/dist/package/entity/order/menu/menu.dto.d.ts +6 -1
  22. package/dist/package/entity/order/order-item/order-item.dto.d.ts +847 -40
  23. package/dist/package/entity/order/order.do.d.ts +9 -3
  24. package/dist/package/entity/order/order.dto.d.ts +2639 -8399
  25. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +12 -205
  26. package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +12 -205
  27. package/dist/package/entity/order-platform/menu.dto.d.ts +48 -48
  28. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +12 -205
  29. package/dist/package/entity/order-setting/order-setting.do.d.ts +8 -0
  30. package/dist/package/entity/order-setting/order-setting.dto.d.ts +16 -0
  31. package/dist/package/entity/order-setting/v3/v3.do.d.ts +3 -0
  32. package/dist/package/entity/order-setting/v3/v3.dto.d.ts +3 -0
  33. package/dist/package/entity/queue/queue.do.d.ts +50 -50
  34. package/dist/package/entity/restaurant/restaurant.dto.d.ts +10 -0
  35. package/package.json +3 -2
  36. package/src/i18n.d.ts +11 -0
  37. package/src/locales/en-US.json +235 -0
  38. package/src/locales/zh-CN.json +235 -0
  39. package/src/main.ts +23 -1
  40. package/src/stores/restaurant/index.ts +31 -3
  41. package/src/stores/table-settings.ts +0 -5
  42. package/src/views/kiosk/KioskSummary.vue +16 -13
  43. package/src/views/kiosk/KioskView.vue +16 -11
  44. package/src/views/kiosk/devices/KioskDeviceCard.vue +10 -7
  45. package/src/views/kiosk/devices/KioskDevicesView.vue +6 -4
  46. package/src/views/kiosk/devices/KioskOtpDialog.vue +4 -1
  47. package/src/views/kiosk/devices/KioskUnbindConfirm.vue +3 -1
  48. package/src/views/kiosk/settings/KioskDineInSection.vue +4 -1
  49. package/src/views/kiosk/settings/KioskDisplayStandSection.vue +14 -11
  50. package/src/views/kiosk/settings/KioskPickAtCounterSection.vue +4 -1
  51. package/src/views/kiosk/settings/KioskSettingView.vue +8 -5
  52. package/src/views/kiosk/settings/KioskTakeawaySection.vue +4 -1
  53. package/src/views/order-settings/OrderSettingsView.vue +13 -7
  54. package/src/views/order-settings/components/RestaurantSelector.vue +5 -2
  55. package/src/views/order-settings/delivery/DeliverySetting.vue +113 -60
  56. package/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue +11 -8
  57. package/src/views/order-settings/delivery/components/TaxInput.vue +1 -1
  58. package/src/views/order-settings/delivery/inhouse/CurrencyInput.vue +2 -2
  59. package/src/views/order-settings/delivery/inhouse/DeliveryCustomTime.vue +31 -0
  60. package/src/views/order-settings/delivery/inhouse/DeliveryOrder.vue +12 -9
  61. package/src/views/order-settings/delivery/inhouse/DeliveryTime.vue +9 -6
  62. package/src/views/order-settings/delivery/inhouse/InHouseDelivery.vue +63 -68
  63. package/src/views/order-settings/delivery/inhouse/TimePicker.vue +4 -1
  64. package/src/views/order-settings/delivery/inhouse/ZoneDialog.vue +7 -4
  65. package/src/views/order-settings/delivery/integrated-delivery/FeedmeDelivery.vue +38 -15
  66. package/src/views/order-settings/delivery/integrated-delivery/FoodpandaCampaignDialog.vue +7 -4
  67. package/src/views/order-settings/delivery/integrated-delivery/FoodpandaSetting.vue +7 -4
  68. package/src/views/order-settings/delivery/integrated-delivery/IntegratedDelivery.vue +99 -41
  69. package/src/views/order-settings/dinein/DineInSetting.vue +15 -12
  70. package/src/views/order-settings/dinein/OfflinePaymentTypeDialog.vue +9 -6
  71. package/src/views/order-settings/dinein/OfflinePaymentTypeDialogContent.vue +6 -3
  72. package/src/views/order-settings/dinein/PaymentType.vue +9 -6
  73. package/src/views/order-settings/general/GeneralSetting.vue +103 -0
  74. package/src/views/order-settings/pickup/AddressInput.vue +5 -2
  75. package/src/views/order-settings/pickup/CustomPayment.vue +10 -8
  76. package/src/views/order-settings/pickup/PaymentSidesheet.vue +114 -63
  77. package/src/views/order-settings/pickup/PickUpPointDialog.vue +7 -4
  78. package/src/views/order-settings/pickup/PickUpPointDialogContent.vue +7 -4
  79. package/src/views/order-settings/pickup/PickUpSetting.vue +13 -10
  80. package/src/views/order-settings/pickup/PickUpSettingDialog.vue +13 -8
  81. package/src/views/order-settings/pickup/PickUpSettingDialogContent.vue +37 -37
  82. package/src/views/order-settings/pickup/Preorder.vue +10 -8
  83. package/src/views/order-settings/servicecharge/RateInput.vue +12 -5
  84. package/src/views/order-settings/servicecharge/ServiceChargeRule.vue +44 -24
  85. package/src/views/order-settings/servicecharge/ServiceChargeSetting.vue +82 -29
  86. package/src/views/order-settings/sms/SmsSetting.vue +105 -29
  87. package/tsconfig.app.json +3 -1
  88. package/tsconfig.json +2 -1
  89. package/tsconfig.node.json +3 -1
  90. package/vite.config.ts +2 -1
  91. package/dist/KioskSettingView-YfMgLMyn.js +0 -4
@@ -3702,17 +3702,20 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
3702
3702
  term: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3703
3703
  instruction: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3704
3704
  autoAccept: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3705
+ ignoreStock: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3705
3706
  }, "strip", z.ZodTypeAny, {
3706
3707
  instruction?: string | null | undefined;
3707
3708
  catalogId?: string | null | undefined;
3708
3709
  autoAccept?: boolean | null | undefined;
3709
3710
  term?: string | null | undefined;
3711
+ ignoreStock?: boolean | null | undefined;
3710
3712
  enable: boolean;
3711
3713
  }, {
3712
3714
  instruction?: string | null | undefined;
3713
3715
  catalogId?: string | null | undefined;
3714
3716
  autoAccept?: boolean | null | undefined;
3715
3717
  term?: string | null | undefined;
3718
+ ignoreStock?: boolean | null | undefined;
3716
3719
  enable: boolean;
3717
3720
  }>>>;
3718
3721
  foodpandaDelivery: z.ZodNullable<z.ZodOptional<z.ZodObject<z.extendShape<{
@@ -4133,111 +4136,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
4133
4136
  anydeskPassword?: string | null | undefined;
4134
4137
  deviceName: string;
4135
4138
  }>, "many">>>;
4136
- payoutAccount: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4137
- enable: z.ZodBoolean;
4138
- bank: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4139
- name: z.ZodEnum<["MAYBANK", "CIMB_BANK", "RHB_BANK", "BANK_ISLAM", "BANK_MUAMALAT", "BANK_RAKYAT", "BANK_SIMPANAN_NASIONAL", "CITIBANK", "HONG_LEONG_BANK", "HSBC_BANK", "OCBC_BANK", "PUBLIC_BANK", "AFFIN_BANK", "AMBANK", "AGRO_BANK", "ALLIANCE_BANK", "AL_RAJHI_BANK", "BANK_OF_CHINA", "BANK_OF_AMERICA", "BANK_OF_TOKYO_MITSUBISHI_UFJ", "BNP_PARIBAS", "DEUTSCHE_BANK", "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA", "JP_MORGAN_CHASE_BANK", "KUWAIT_FINANCE_HOUSE", "MIZUHO_BANK", "STANDARD_CHARTERED_BANK", "SUMITOMO_MITSUI_BANKING_CORPORATION", "THE_ROYAL_BANK_OF_SCOTLAND", "UNITED_OVERSEAS_BANK"]>;
4140
- type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["CURRENT_ACCOUNT", "SAVING_ACCOUNT"]>>>;
4141
- accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4142
- holderName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4143
- }, "strip", z.ZodTypeAny, {
4144
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
4145
- accountNumber?: string | null | undefined;
4146
- holderName?: string | null | undefined;
4147
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
4148
- }, {
4149
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
4150
- accountNumber?: string | null | undefined;
4151
- holderName?: string | null | undefined;
4152
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
4153
- }>>>;
4154
- methods: z.ZodArray<z.ZodObject<{
4155
- issuer: z.ZodEnum<["ALIPAY", "BOOST", "GRABPAY", "MAYBANKQRPAY", "PRESTOPAY", "RAZERPAY", "SHOPEEPAY", "TOUCHNGO", "WECHATPAY", "CARD", "OTHER", "FEEDME", "DUITNOW", "FPX", "DEBITCARD", "CREDITCARD", "UNIONPAY", "ATOME"]>;
4156
- variant: z.ZodString;
4157
- rate: z.ZodObject<{
4158
- amount: z.ZodNumber;
4159
- precision: z.ZodNumber;
4160
- }, "strip", z.ZodTypeAny, {
4161
- amount: number;
4162
- precision: number;
4163
- }, {
4164
- amount: number;
4165
- precision: number;
4166
- }>;
4167
- tPlus: z.ZodDefault<z.ZodNumber>;
4168
- }, "strip", z.ZodTypeAny, {
4169
- variant: string;
4170
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
4171
- rate: {
4172
- amount: number;
4173
- precision: number;
4174
- };
4175
- tPlus: number;
4176
- }, {
4177
- tPlus?: number | undefined;
4178
- variant: string;
4179
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
4180
- rate: {
4181
- amount: number;
4182
- precision: number;
4183
- };
4184
- }>, "many">;
4185
- ssm: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4186
- bankStatement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4187
- exteriorPhoto: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4188
- keyPerson: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4189
- keyPersonPhone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4190
- keyPersonEmail: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4191
- status: z.ZodEnum<["NEW", "PENDING", "APPROVED"]>;
4192
- }, "strip", z.ZodTypeAny, {
4193
- bank?: {
4194
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
4195
- accountNumber?: string | null | undefined;
4196
- holderName?: string | null | undefined;
4197
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
4198
- } | null | undefined;
4199
- ssm?: string | null | undefined;
4200
- bankStatement?: string | null | undefined;
4201
- exteriorPhoto?: string | null | undefined;
4202
- keyPerson?: string | null | undefined;
4203
- keyPersonPhone?: string | null | undefined;
4204
- keyPersonEmail?: string | null | undefined;
4205
- status: "NEW" | "PENDING" | "APPROVED";
4206
- enable: boolean;
4207
- methods: {
4208
- variant: string;
4209
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
4210
- rate: {
4211
- amount: number;
4212
- precision: number;
4213
- };
4214
- tPlus: number;
4215
- }[];
4216
- }, {
4217
- bank?: {
4218
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
4219
- accountNumber?: string | null | undefined;
4220
- holderName?: string | null | undefined;
4221
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
4222
- } | null | undefined;
4223
- ssm?: string | null | undefined;
4224
- bankStatement?: string | null | undefined;
4225
- exteriorPhoto?: string | null | undefined;
4226
- keyPerson?: string | null | undefined;
4227
- keyPersonPhone?: string | null | undefined;
4228
- keyPersonEmail?: string | null | undefined;
4229
- status: "NEW" | "PENDING" | "APPROVED";
4230
- enable: boolean;
4231
- methods: {
4232
- tPlus?: number | undefined;
4233
- variant: string;
4234
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
4235
- rate: {
4236
- amount: number;
4237
- precision: number;
4238
- };
4239
- }[];
4240
- }>>>;
4139
+ payoutAccount: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
4241
4140
  clearCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
4242
4141
  queueSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4243
4142
  enableOrder: z.ZodBoolean;
@@ -4427,6 +4326,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
4427
4326
  catalogId?: string | null | undefined;
4428
4327
  autoAccept?: boolean | null | undefined;
4429
4328
  term?: string | null | undefined;
4329
+ ignoreStock?: boolean | null | undefined;
4430
4330
  enable: boolean;
4431
4331
  } | null | undefined;
4432
4332
  foodpandaDelivery?: {
@@ -4490,31 +4390,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
4490
4390
  anydeskPassword?: string | null | undefined;
4491
4391
  deviceName: string;
4492
4392
  }[] | null | undefined;
4493
- payoutAccount?: {
4494
- bank?: {
4495
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
4496
- accountNumber?: string | null | undefined;
4497
- holderName?: string | null | undefined;
4498
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
4499
- } | null | undefined;
4500
- ssm?: string | null | undefined;
4501
- bankStatement?: string | null | undefined;
4502
- exteriorPhoto?: string | null | undefined;
4503
- keyPerson?: string | null | undefined;
4504
- keyPersonPhone?: string | null | undefined;
4505
- keyPersonEmail?: string | null | undefined;
4506
- status: "NEW" | "PENDING" | "APPROVED";
4507
- enable: boolean;
4508
- methods: {
4509
- variant: string;
4510
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
4511
- rate: {
4512
- amount: number;
4513
- precision: number;
4514
- };
4515
- tPlus: number;
4516
- }[];
4517
- } | null | undefined;
4393
+ payoutAccount?: Record<string, any> | null | undefined;
4518
4394
  clearCount?: number | null | undefined;
4519
4395
  queueSetting?: {
4520
4396
  duration?: number | null | undefined;
@@ -4822,6 +4698,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
4822
4698
  catalogId?: string | null | undefined;
4823
4699
  autoAccept?: boolean | null | undefined;
4824
4700
  term?: string | null | undefined;
4701
+ ignoreStock?: boolean | null | undefined;
4825
4702
  enable: boolean;
4826
4703
  } | null | undefined;
4827
4704
  foodpandaDelivery?: {
@@ -4885,31 +4762,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
4885
4762
  anydeskPassword?: string | null | undefined;
4886
4763
  deviceName: string;
4887
4764
  }[] | null | undefined;
4888
- payoutAccount?: {
4889
- bank?: {
4890
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
4891
- accountNumber?: string | null | undefined;
4892
- holderName?: string | null | undefined;
4893
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
4894
- } | null | undefined;
4895
- ssm?: string | null | undefined;
4896
- bankStatement?: string | null | undefined;
4897
- exteriorPhoto?: string | null | undefined;
4898
- keyPerson?: string | null | undefined;
4899
- keyPersonPhone?: string | null | undefined;
4900
- keyPersonEmail?: string | null | undefined;
4901
- status: "NEW" | "PENDING" | "APPROVED";
4902
- enable: boolean;
4903
- methods: {
4904
- tPlus?: number | undefined;
4905
- variant: string;
4906
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
4907
- rate: {
4908
- amount: number;
4909
- precision: number;
4910
- };
4911
- }[];
4912
- } | null | undefined;
4765
+ payoutAccount?: Record<string, any> | null | undefined;
4913
4766
  clearCount?: number | null | undefined;
4914
4767
  queueSetting?: {
4915
4768
  duration?: number | null | undefined;
@@ -5663,6 +5516,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
5663
5516
  catalogId?: string | null | undefined;
5664
5517
  autoAccept?: boolean | null | undefined;
5665
5518
  term?: string | null | undefined;
5519
+ ignoreStock?: boolean | null | undefined;
5666
5520
  enable: boolean;
5667
5521
  } | null | undefined;
5668
5522
  foodpandaDelivery?: {
@@ -5726,31 +5580,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
5726
5580
  anydeskPassword?: string | null | undefined;
5727
5581
  deviceName: string;
5728
5582
  }[] | null | undefined;
5729
- payoutAccount?: {
5730
- bank?: {
5731
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
5732
- accountNumber?: string | null | undefined;
5733
- holderName?: string | null | undefined;
5734
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
5735
- } | null | undefined;
5736
- ssm?: string | null | undefined;
5737
- bankStatement?: string | null | undefined;
5738
- exteriorPhoto?: string | null | undefined;
5739
- keyPerson?: string | null | undefined;
5740
- keyPersonPhone?: string | null | undefined;
5741
- keyPersonEmail?: string | null | undefined;
5742
- status: "NEW" | "PENDING" | "APPROVED";
5743
- enable: boolean;
5744
- methods: {
5745
- variant: string;
5746
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
5747
- rate: {
5748
- amount: number;
5749
- precision: number;
5750
- };
5751
- tPlus: number;
5752
- }[];
5753
- } | null | undefined;
5583
+ payoutAccount?: Record<string, any> | null | undefined;
5754
5584
  clearCount?: number | null | undefined;
5755
5585
  queueSetting?: {
5756
5586
  duration?: number | null | undefined;
@@ -6219,6 +6049,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
6219
6049
  catalogId?: string | null | undefined;
6220
6050
  autoAccept?: boolean | null | undefined;
6221
6051
  term?: string | null | undefined;
6052
+ ignoreStock?: boolean | null | undefined;
6222
6053
  enable: boolean;
6223
6054
  } | null | undefined;
6224
6055
  foodpandaDelivery?: {
@@ -6282,31 +6113,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
6282
6113
  anydeskPassword?: string | null | undefined;
6283
6114
  deviceName: string;
6284
6115
  }[] | null | undefined;
6285
- payoutAccount?: {
6286
- bank?: {
6287
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
6288
- accountNumber?: string | null | undefined;
6289
- holderName?: string | null | undefined;
6290
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
6291
- } | null | undefined;
6292
- ssm?: string | null | undefined;
6293
- bankStatement?: string | null | undefined;
6294
- exteriorPhoto?: string | null | undefined;
6295
- keyPerson?: string | null | undefined;
6296
- keyPersonPhone?: string | null | undefined;
6297
- keyPersonEmail?: string | null | undefined;
6298
- status: "NEW" | "PENDING" | "APPROVED";
6299
- enable: boolean;
6300
- methods: {
6301
- tPlus?: number | undefined;
6302
- variant: string;
6303
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
6304
- rate: {
6305
- amount: number;
6306
- precision: number;
6307
- };
6308
- }[];
6309
- } | null | undefined;
6116
+ payoutAccount?: Record<string, any> | null | undefined;
6310
6117
  clearCount?: number | null | undefined;
6311
6118
  queueSetting?: {
6312
6119
  duration?: number | null | undefined;
@@ -8146,17 +7953,20 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
8146
7953
  term: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8147
7954
  instruction: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8148
7955
  autoAccept: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
7956
+ ignoreStock: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
8149
7957
  }, "strip", z.ZodTypeAny, {
8150
7958
  instruction?: string | null | undefined;
8151
7959
  catalogId?: string | null | undefined;
8152
7960
  autoAccept?: boolean | null | undefined;
8153
7961
  term?: string | null | undefined;
7962
+ ignoreStock?: boolean | null | undefined;
8154
7963
  enable: boolean;
8155
7964
  }, {
8156
7965
  instruction?: string | null | undefined;
8157
7966
  catalogId?: string | null | undefined;
8158
7967
  autoAccept?: boolean | null | undefined;
8159
7968
  term?: string | null | undefined;
7969
+ ignoreStock?: boolean | null | undefined;
8160
7970
  enable: boolean;
8161
7971
  }>>>;
8162
7972
  foodpandaDelivery: z.ZodNullable<z.ZodOptional<z.ZodObject<z.extendShape<{
@@ -8577,111 +8387,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
8577
8387
  anydeskPassword?: string | null | undefined;
8578
8388
  deviceName: string;
8579
8389
  }>, "many">>>;
8580
- payoutAccount: z.ZodNullable<z.ZodOptional<z.ZodObject<{
8581
- enable: z.ZodBoolean;
8582
- bank: z.ZodNullable<z.ZodOptional<z.ZodObject<{
8583
- name: z.ZodEnum<["MAYBANK", "CIMB_BANK", "RHB_BANK", "BANK_ISLAM", "BANK_MUAMALAT", "BANK_RAKYAT", "BANK_SIMPANAN_NASIONAL", "CITIBANK", "HONG_LEONG_BANK", "HSBC_BANK", "OCBC_BANK", "PUBLIC_BANK", "AFFIN_BANK", "AMBANK", "AGRO_BANK", "ALLIANCE_BANK", "AL_RAJHI_BANK", "BANK_OF_CHINA", "BANK_OF_AMERICA", "BANK_OF_TOKYO_MITSUBISHI_UFJ", "BNP_PARIBAS", "DEUTSCHE_BANK", "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA", "JP_MORGAN_CHASE_BANK", "KUWAIT_FINANCE_HOUSE", "MIZUHO_BANK", "STANDARD_CHARTERED_BANK", "SUMITOMO_MITSUI_BANKING_CORPORATION", "THE_ROYAL_BANK_OF_SCOTLAND", "UNITED_OVERSEAS_BANK"]>;
8584
- type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["CURRENT_ACCOUNT", "SAVING_ACCOUNT"]>>>;
8585
- accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8586
- holderName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8587
- }, "strip", z.ZodTypeAny, {
8588
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
8589
- accountNumber?: string | null | undefined;
8590
- holderName?: string | null | undefined;
8591
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
8592
- }, {
8593
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
8594
- accountNumber?: string | null | undefined;
8595
- holderName?: string | null | undefined;
8596
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
8597
- }>>>;
8598
- methods: z.ZodArray<z.ZodObject<{
8599
- issuer: z.ZodEnum<["ALIPAY", "BOOST", "GRABPAY", "MAYBANKQRPAY", "PRESTOPAY", "RAZERPAY", "SHOPEEPAY", "TOUCHNGO", "WECHATPAY", "CARD", "OTHER", "FEEDME", "DUITNOW", "FPX", "DEBITCARD", "CREDITCARD", "UNIONPAY", "ATOME"]>;
8600
- variant: z.ZodString;
8601
- rate: z.ZodObject<{
8602
- amount: z.ZodNumber;
8603
- precision: z.ZodNumber;
8604
- }, "strip", z.ZodTypeAny, {
8605
- amount: number;
8606
- precision: number;
8607
- }, {
8608
- amount: number;
8609
- precision: number;
8610
- }>;
8611
- tPlus: z.ZodDefault<z.ZodNumber>;
8612
- }, "strip", z.ZodTypeAny, {
8613
- variant: string;
8614
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
8615
- rate: {
8616
- amount: number;
8617
- precision: number;
8618
- };
8619
- tPlus: number;
8620
- }, {
8621
- tPlus?: number | undefined;
8622
- variant: string;
8623
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
8624
- rate: {
8625
- amount: number;
8626
- precision: number;
8627
- };
8628
- }>, "many">;
8629
- ssm: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8630
- bankStatement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8631
- exteriorPhoto: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8632
- keyPerson: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8633
- keyPersonPhone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8634
- keyPersonEmail: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8635
- status: z.ZodEnum<["NEW", "PENDING", "APPROVED"]>;
8636
- }, "strip", z.ZodTypeAny, {
8637
- bank?: {
8638
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
8639
- accountNumber?: string | null | undefined;
8640
- holderName?: string | null | undefined;
8641
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
8642
- } | null | undefined;
8643
- ssm?: string | null | undefined;
8644
- bankStatement?: string | null | undefined;
8645
- exteriorPhoto?: string | null | undefined;
8646
- keyPerson?: string | null | undefined;
8647
- keyPersonPhone?: string | null | undefined;
8648
- keyPersonEmail?: string | null | undefined;
8649
- status: "NEW" | "PENDING" | "APPROVED";
8650
- enable: boolean;
8651
- methods: {
8652
- variant: string;
8653
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
8654
- rate: {
8655
- amount: number;
8656
- precision: number;
8657
- };
8658
- tPlus: number;
8659
- }[];
8660
- }, {
8661
- bank?: {
8662
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
8663
- accountNumber?: string | null | undefined;
8664
- holderName?: string | null | undefined;
8665
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
8666
- } | null | undefined;
8667
- ssm?: string | null | undefined;
8668
- bankStatement?: string | null | undefined;
8669
- exteriorPhoto?: string | null | undefined;
8670
- keyPerson?: string | null | undefined;
8671
- keyPersonPhone?: string | null | undefined;
8672
- keyPersonEmail?: string | null | undefined;
8673
- status: "NEW" | "PENDING" | "APPROVED";
8674
- enable: boolean;
8675
- methods: {
8676
- tPlus?: number | undefined;
8677
- variant: string;
8678
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
8679
- rate: {
8680
- amount: number;
8681
- precision: number;
8682
- };
8683
- }[];
8684
- }>>>;
8390
+ payoutAccount: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
8685
8391
  clearCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
8686
8392
  queueSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
8687
8393
  enableOrder: z.ZodBoolean;
@@ -8871,6 +8577,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
8871
8577
  catalogId?: string | null | undefined;
8872
8578
  autoAccept?: boolean | null | undefined;
8873
8579
  term?: string | null | undefined;
8580
+ ignoreStock?: boolean | null | undefined;
8874
8581
  enable: boolean;
8875
8582
  } | null | undefined;
8876
8583
  foodpandaDelivery?: {
@@ -8934,31 +8641,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
8934
8641
  anydeskPassword?: string | null | undefined;
8935
8642
  deviceName: string;
8936
8643
  }[] | null | undefined;
8937
- payoutAccount?: {
8938
- bank?: {
8939
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
8940
- accountNumber?: string | null | undefined;
8941
- holderName?: string | null | undefined;
8942
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
8943
- } | null | undefined;
8944
- ssm?: string | null | undefined;
8945
- bankStatement?: string | null | undefined;
8946
- exteriorPhoto?: string | null | undefined;
8947
- keyPerson?: string | null | undefined;
8948
- keyPersonPhone?: string | null | undefined;
8949
- keyPersonEmail?: string | null | undefined;
8950
- status: "NEW" | "PENDING" | "APPROVED";
8951
- enable: boolean;
8952
- methods: {
8953
- variant: string;
8954
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
8955
- rate: {
8956
- amount: number;
8957
- precision: number;
8958
- };
8959
- tPlus: number;
8960
- }[];
8961
- } | null | undefined;
8644
+ payoutAccount?: Record<string, any> | null | undefined;
8962
8645
  clearCount?: number | null | undefined;
8963
8646
  queueSetting?: {
8964
8647
  duration?: number | null | undefined;
@@ -9266,6 +8949,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
9266
8949
  catalogId?: string | null | undefined;
9267
8950
  autoAccept?: boolean | null | undefined;
9268
8951
  term?: string | null | undefined;
8952
+ ignoreStock?: boolean | null | undefined;
9269
8953
  enable: boolean;
9270
8954
  } | null | undefined;
9271
8955
  foodpandaDelivery?: {
@@ -9329,31 +9013,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
9329
9013
  anydeskPassword?: string | null | undefined;
9330
9014
  deviceName: string;
9331
9015
  }[] | null | undefined;
9332
- payoutAccount?: {
9333
- bank?: {
9334
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
9335
- accountNumber?: string | null | undefined;
9336
- holderName?: string | null | undefined;
9337
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
9338
- } | null | undefined;
9339
- ssm?: string | null | undefined;
9340
- bankStatement?: string | null | undefined;
9341
- exteriorPhoto?: string | null | undefined;
9342
- keyPerson?: string | null | undefined;
9343
- keyPersonPhone?: string | null | undefined;
9344
- keyPersonEmail?: string | null | undefined;
9345
- status: "NEW" | "PENDING" | "APPROVED";
9346
- enable: boolean;
9347
- methods: {
9348
- tPlus?: number | undefined;
9349
- variant: string;
9350
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
9351
- rate: {
9352
- amount: number;
9353
- precision: number;
9354
- };
9355
- }[];
9356
- } | null | undefined;
9016
+ payoutAccount?: Record<string, any> | null | undefined;
9357
9017
  clearCount?: number | null | undefined;
9358
9018
  queueSetting?: {
9359
9019
  duration?: number | null | undefined;
@@ -11109,17 +10769,20 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
11109
10769
  term: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11110
10770
  instruction: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11111
10771
  autoAccept: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
10772
+ ignoreStock: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
11112
10773
  }, "strip", z.ZodTypeAny, {
11113
10774
  instruction?: string | null | undefined;
11114
10775
  catalogId?: string | null | undefined;
11115
10776
  autoAccept?: boolean | null | undefined;
11116
10777
  term?: string | null | undefined;
10778
+ ignoreStock?: boolean | null | undefined;
11117
10779
  enable: boolean;
11118
10780
  }, {
11119
10781
  instruction?: string | null | undefined;
11120
10782
  catalogId?: string | null | undefined;
11121
10783
  autoAccept?: boolean | null | undefined;
11122
10784
  term?: string | null | undefined;
10785
+ ignoreStock?: boolean | null | undefined;
11123
10786
  enable: boolean;
11124
10787
  }>>>;
11125
10788
  foodpandaDelivery: z.ZodNullable<z.ZodOptional<z.ZodObject<z.extendShape<{
@@ -11540,111 +11203,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
11540
11203
  anydeskPassword?: string | null | undefined;
11541
11204
  deviceName: string;
11542
11205
  }>, "many">>>;
11543
- payoutAccount: z.ZodNullable<z.ZodOptional<z.ZodObject<{
11544
- enable: z.ZodBoolean;
11545
- bank: z.ZodNullable<z.ZodOptional<z.ZodObject<{
11546
- name: z.ZodEnum<["MAYBANK", "CIMB_BANK", "RHB_BANK", "BANK_ISLAM", "BANK_MUAMALAT", "BANK_RAKYAT", "BANK_SIMPANAN_NASIONAL", "CITIBANK", "HONG_LEONG_BANK", "HSBC_BANK", "OCBC_BANK", "PUBLIC_BANK", "AFFIN_BANK", "AMBANK", "AGRO_BANK", "ALLIANCE_BANK", "AL_RAJHI_BANK", "BANK_OF_CHINA", "BANK_OF_AMERICA", "BANK_OF_TOKYO_MITSUBISHI_UFJ", "BNP_PARIBAS", "DEUTSCHE_BANK", "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA", "JP_MORGAN_CHASE_BANK", "KUWAIT_FINANCE_HOUSE", "MIZUHO_BANK", "STANDARD_CHARTERED_BANK", "SUMITOMO_MITSUI_BANKING_CORPORATION", "THE_ROYAL_BANK_OF_SCOTLAND", "UNITED_OVERSEAS_BANK"]>;
11547
- type: z.ZodNullable<z.ZodOptional<z.ZodEnum<["CURRENT_ACCOUNT", "SAVING_ACCOUNT"]>>>;
11548
- accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11549
- holderName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11550
- }, "strip", z.ZodTypeAny, {
11551
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
11552
- accountNumber?: string | null | undefined;
11553
- holderName?: string | null | undefined;
11554
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
11555
- }, {
11556
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
11557
- accountNumber?: string | null | undefined;
11558
- holderName?: string | null | undefined;
11559
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
11560
- }>>>;
11561
- methods: z.ZodArray<z.ZodObject<{
11562
- issuer: z.ZodEnum<["ALIPAY", "BOOST", "GRABPAY", "MAYBANKQRPAY", "PRESTOPAY", "RAZERPAY", "SHOPEEPAY", "TOUCHNGO", "WECHATPAY", "CARD", "OTHER", "FEEDME", "DUITNOW", "FPX", "DEBITCARD", "CREDITCARD", "UNIONPAY", "ATOME"]>;
11563
- variant: z.ZodString;
11564
- rate: z.ZodObject<{
11565
- amount: z.ZodNumber;
11566
- precision: z.ZodNumber;
11567
- }, "strip", z.ZodTypeAny, {
11568
- amount: number;
11569
- precision: number;
11570
- }, {
11571
- amount: number;
11572
- precision: number;
11573
- }>;
11574
- tPlus: z.ZodDefault<z.ZodNumber>;
11575
- }, "strip", z.ZodTypeAny, {
11576
- variant: string;
11577
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
11578
- rate: {
11579
- amount: number;
11580
- precision: number;
11581
- };
11582
- tPlus: number;
11583
- }, {
11584
- tPlus?: number | undefined;
11585
- variant: string;
11586
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
11587
- rate: {
11588
- amount: number;
11589
- precision: number;
11590
- };
11591
- }>, "many">;
11592
- ssm: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11593
- bankStatement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11594
- exteriorPhoto: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11595
- keyPerson: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11596
- keyPersonPhone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11597
- keyPersonEmail: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11598
- status: z.ZodEnum<["NEW", "PENDING", "APPROVED"]>;
11599
- }, "strip", z.ZodTypeAny, {
11600
- bank?: {
11601
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
11602
- accountNumber?: string | null | undefined;
11603
- holderName?: string | null | undefined;
11604
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
11605
- } | null | undefined;
11606
- ssm?: string | null | undefined;
11607
- bankStatement?: string | null | undefined;
11608
- exteriorPhoto?: string | null | undefined;
11609
- keyPerson?: string | null | undefined;
11610
- keyPersonPhone?: string | null | undefined;
11611
- keyPersonEmail?: string | null | undefined;
11612
- status: "NEW" | "PENDING" | "APPROVED";
11613
- enable: boolean;
11614
- methods: {
11615
- variant: string;
11616
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
11617
- rate: {
11618
- amount: number;
11619
- precision: number;
11620
- };
11621
- tPlus: number;
11622
- }[];
11623
- }, {
11624
- bank?: {
11625
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
11626
- accountNumber?: string | null | undefined;
11627
- holderName?: string | null | undefined;
11628
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
11629
- } | null | undefined;
11630
- ssm?: string | null | undefined;
11631
- bankStatement?: string | null | undefined;
11632
- exteriorPhoto?: string | null | undefined;
11633
- keyPerson?: string | null | undefined;
11634
- keyPersonPhone?: string | null | undefined;
11635
- keyPersonEmail?: string | null | undefined;
11636
- status: "NEW" | "PENDING" | "APPROVED";
11637
- enable: boolean;
11638
- methods: {
11639
- tPlus?: number | undefined;
11640
- variant: string;
11641
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
11642
- rate: {
11643
- amount: number;
11644
- precision: number;
11645
- };
11646
- }[];
11647
- }>>>;
11206
+ payoutAccount: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
11648
11207
  clearCount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
11649
11208
  queueSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
11650
11209
  enableOrder: z.ZodBoolean;
@@ -11834,6 +11393,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
11834
11393
  catalogId?: string | null | undefined;
11835
11394
  autoAccept?: boolean | null | undefined;
11836
11395
  term?: string | null | undefined;
11396
+ ignoreStock?: boolean | null | undefined;
11837
11397
  enable: boolean;
11838
11398
  } | null | undefined;
11839
11399
  foodpandaDelivery?: {
@@ -11897,31 +11457,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
11897
11457
  anydeskPassword?: string | null | undefined;
11898
11458
  deviceName: string;
11899
11459
  }[] | null | undefined;
11900
- payoutAccount?: {
11901
- bank?: {
11902
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
11903
- accountNumber?: string | null | undefined;
11904
- holderName?: string | null | undefined;
11905
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
11906
- } | null | undefined;
11907
- ssm?: string | null | undefined;
11908
- bankStatement?: string | null | undefined;
11909
- exteriorPhoto?: string | null | undefined;
11910
- keyPerson?: string | null | undefined;
11911
- keyPersonPhone?: string | null | undefined;
11912
- keyPersonEmail?: string | null | undefined;
11913
- status: "NEW" | "PENDING" | "APPROVED";
11914
- enable: boolean;
11915
- methods: {
11916
- variant: string;
11917
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
11918
- rate: {
11919
- amount: number;
11920
- precision: number;
11921
- };
11922
- tPlus: number;
11923
- }[];
11924
- } | null | undefined;
11460
+ payoutAccount?: Record<string, any> | null | undefined;
11925
11461
  clearCount?: number | null | undefined;
11926
11462
  queueSetting?: {
11927
11463
  duration?: number | null | undefined;
@@ -12229,6 +11765,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
12229
11765
  catalogId?: string | null | undefined;
12230
11766
  autoAccept?: boolean | null | undefined;
12231
11767
  term?: string | null | undefined;
11768
+ ignoreStock?: boolean | null | undefined;
12232
11769
  enable: boolean;
12233
11770
  } | null | undefined;
12234
11771
  foodpandaDelivery?: {
@@ -12292,31 +11829,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
12292
11829
  anydeskPassword?: string | null | undefined;
12293
11830
  deviceName: string;
12294
11831
  }[] | null | undefined;
12295
- payoutAccount?: {
12296
- bank?: {
12297
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
12298
- accountNumber?: string | null | undefined;
12299
- holderName?: string | null | undefined;
12300
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
12301
- } | null | undefined;
12302
- ssm?: string | null | undefined;
12303
- bankStatement?: string | null | undefined;
12304
- exteriorPhoto?: string | null | undefined;
12305
- keyPerson?: string | null | undefined;
12306
- keyPersonPhone?: string | null | undefined;
12307
- keyPersonEmail?: string | null | undefined;
12308
- status: "NEW" | "PENDING" | "APPROVED";
12309
- enable: boolean;
12310
- methods: {
12311
- tPlus?: number | undefined;
12312
- variant: string;
12313
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
12314
- rate: {
12315
- amount: number;
12316
- precision: number;
12317
- };
12318
- }[];
12319
- } | null | undefined;
11832
+ payoutAccount?: Record<string, any> | null | undefined;
12320
11833
  clearCount?: number | null | undefined;
12321
11834
  queueSetting?: {
12322
11835
  duration?: number | null | undefined;
@@ -12477,6 +11990,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
12477
11990
  }>>>>;
12478
11991
  billId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
12479
11992
  }, "strip", z.ZodTypeAny, {
11993
+ billId?: string | null | undefined;
12480
11994
  restaurant?: string | null | undefined;
12481
11995
  pf_restaurant?: {
12482
11996
  channel?: string | null | undefined;
@@ -12628,6 +12142,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
12628
12142
  catalogId?: string | null | undefined;
12629
12143
  autoAccept?: boolean | null | undefined;
12630
12144
  term?: string | null | undefined;
12145
+ ignoreStock?: boolean | null | undefined;
12631
12146
  enable: boolean;
12632
12147
  } | null | undefined;
12633
12148
  foodpandaDelivery?: {
@@ -12691,31 +12206,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
12691
12206
  anydeskPassword?: string | null | undefined;
12692
12207
  deviceName: string;
12693
12208
  }[] | null | undefined;
12694
- payoutAccount?: {
12695
- bank?: {
12696
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
12697
- accountNumber?: string | null | undefined;
12698
- holderName?: string | null | undefined;
12699
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
12700
- } | null | undefined;
12701
- ssm?: string | null | undefined;
12702
- bankStatement?: string | null | undefined;
12703
- exteriorPhoto?: string | null | undefined;
12704
- keyPerson?: string | null | undefined;
12705
- keyPersonPhone?: string | null | undefined;
12706
- keyPersonEmail?: string | null | undefined;
12707
- status: "NEW" | "PENDING" | "APPROVED";
12708
- enable: boolean;
12709
- methods: {
12710
- variant: string;
12711
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
12712
- rate: {
12713
- amount: number;
12714
- precision: number;
12715
- };
12716
- tPlus: number;
12717
- }[];
12718
- } | null | undefined;
12209
+ payoutAccount?: Record<string, any> | null | undefined;
12719
12210
  clearCount?: number | null | undefined;
12720
12211
  queueSetting?: {
12721
12212
  duration?: number | null | undefined;
@@ -12874,9 +12365,9 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
12874
12365
  regNo: string;
12875
12366
  };
12876
12367
  } | null | undefined;
12877
- billId?: string | null | undefined;
12878
12368
  appliedAt: string;
12879
12369
  }, {
12370
+ billId?: string | null | undefined;
12880
12371
  restaurant?: string | null | undefined;
12881
12372
  pf_restaurant?: {
12882
12373
  channel?: string | null | undefined;
@@ -13028,6 +12519,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
13028
12519
  catalogId?: string | null | undefined;
13029
12520
  autoAccept?: boolean | null | undefined;
13030
12521
  term?: string | null | undefined;
12522
+ ignoreStock?: boolean | null | undefined;
13031
12523
  enable: boolean;
13032
12524
  } | null | undefined;
13033
12525
  foodpandaDelivery?: {
@@ -13091,31 +12583,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
13091
12583
  anydeskPassword?: string | null | undefined;
13092
12584
  deviceName: string;
13093
12585
  }[] | null | undefined;
13094
- payoutAccount?: {
13095
- bank?: {
13096
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
13097
- accountNumber?: string | null | undefined;
13098
- holderName?: string | null | undefined;
13099
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
13100
- } | null | undefined;
13101
- ssm?: string | null | undefined;
13102
- bankStatement?: string | null | undefined;
13103
- exteriorPhoto?: string | null | undefined;
13104
- keyPerson?: string | null | undefined;
13105
- keyPersonPhone?: string | null | undefined;
13106
- keyPersonEmail?: string | null | undefined;
13107
- status: "NEW" | "PENDING" | "APPROVED";
13108
- enable: boolean;
13109
- methods: {
13110
- tPlus?: number | undefined;
13111
- variant: string;
13112
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
13113
- rate: {
13114
- amount: number;
13115
- precision: number;
13116
- };
13117
- }[];
13118
- } | null | undefined;
12586
+ payoutAccount?: Record<string, any> | null | undefined;
13119
12587
  clearCount?: number | null | undefined;
13120
12588
  queueSetting?: {
13121
12589
  duration?: number | null | undefined;
@@ -13274,7 +12742,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
13274
12742
  regNo: string;
13275
12743
  };
13276
12744
  } | null | undefined;
13277
- billId?: string | null | undefined;
13278
12745
  appliedAt: string;
13279
12746
  }>, "many">>>;
13280
12747
  transferExpiredAt: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
@@ -13497,6 +12964,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
13497
12964
  }>, "many">>>;
13498
12965
  }, "strip", z.ZodTypeAny, {
13499
12966
  history?: {
12967
+ billId?: string | null | undefined;
13500
12968
  restaurant?: string | null | undefined;
13501
12969
  pf_restaurant?: {
13502
12970
  channel?: string | null | undefined;
@@ -13648,6 +13116,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
13648
13116
  catalogId?: string | null | undefined;
13649
13117
  autoAccept?: boolean | null | undefined;
13650
13118
  term?: string | null | undefined;
13119
+ ignoreStock?: boolean | null | undefined;
13651
13120
  enable: boolean;
13652
13121
  } | null | undefined;
13653
13122
  foodpandaDelivery?: {
@@ -13711,31 +13180,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
13711
13180
  anydeskPassword?: string | null | undefined;
13712
13181
  deviceName: string;
13713
13182
  }[] | null | undefined;
13714
- payoutAccount?: {
13715
- bank?: {
13716
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
13717
- accountNumber?: string | null | undefined;
13718
- holderName?: string | null | undefined;
13719
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
13720
- } | null | undefined;
13721
- ssm?: string | null | undefined;
13722
- bankStatement?: string | null | undefined;
13723
- exteriorPhoto?: string | null | undefined;
13724
- keyPerson?: string | null | undefined;
13725
- keyPersonPhone?: string | null | undefined;
13726
- keyPersonEmail?: string | null | undefined;
13727
- status: "NEW" | "PENDING" | "APPROVED";
13728
- enable: boolean;
13729
- methods: {
13730
- variant: string;
13731
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
13732
- rate: {
13733
- amount: number;
13734
- precision: number;
13735
- };
13736
- tPlus: number;
13737
- }[];
13738
- } | null | undefined;
13183
+ payoutAccount?: Record<string, any> | null | undefined;
13739
13184
  clearCount?: number | null | undefined;
13740
13185
  queueSetting?: {
13741
13186
  duration?: number | null | undefined;
@@ -13894,9 +13339,9 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
13894
13339
  regNo: string;
13895
13340
  };
13896
13341
  } | null | undefined;
13897
- billId?: string | null | undefined;
13898
13342
  appliedAt: string;
13899
13343
  }[] | null | undefined;
13344
+ billId?: string | null | undefined;
13900
13345
  frontend?: {
13901
13346
  reason: string;
13902
13347
  hide: boolean;
@@ -14072,6 +13517,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
14072
13517
  catalogId?: string | null | undefined;
14073
13518
  autoAccept?: boolean | null | undefined;
14074
13519
  term?: string | null | undefined;
13520
+ ignoreStock?: boolean | null | undefined;
14075
13521
  enable: boolean;
14076
13522
  } | null | undefined;
14077
13523
  foodpandaDelivery?: {
@@ -14135,31 +13581,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
14135
13581
  anydeskPassword?: string | null | undefined;
14136
13582
  deviceName: string;
14137
13583
  }[] | null | undefined;
14138
- payoutAccount?: {
14139
- bank?: {
14140
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
14141
- accountNumber?: string | null | undefined;
14142
- holderName?: string | null | undefined;
14143
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
14144
- } | null | undefined;
14145
- ssm?: string | null | undefined;
14146
- bankStatement?: string | null | undefined;
14147
- exteriorPhoto?: string | null | undefined;
14148
- keyPerson?: string | null | undefined;
14149
- keyPersonPhone?: string | null | undefined;
14150
- keyPersonEmail?: string | null | undefined;
14151
- status: "NEW" | "PENDING" | "APPROVED";
14152
- enable: boolean;
14153
- methods: {
14154
- variant: string;
14155
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
14156
- rate: {
14157
- amount: number;
14158
- precision: number;
14159
- };
14160
- tPlus: number;
14161
- }[];
14162
- } | null | undefined;
13584
+ payoutAccount?: Record<string, any> | null | undefined;
14163
13585
  clearCount?: number | null | undefined;
14164
13586
  queueSetting?: {
14165
13587
  duration?: number | null | undefined;
@@ -14318,7 +13740,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
14318
13740
  regNo: string;
14319
13741
  };
14320
13742
  } | null | undefined;
14321
- billId?: string | null | undefined;
14322
13743
  claimedAt?: string | null | undefined;
14323
13744
  redeemedAt?: string | null | undefined;
14324
13745
  redeemCode?: string | null | undefined;
@@ -14583,6 +14004,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
14583
14004
  catalogId?: string | null | undefined;
14584
14005
  autoAccept?: boolean | null | undefined;
14585
14006
  term?: string | null | undefined;
14007
+ ignoreStock?: boolean | null | undefined;
14586
14008
  enable: boolean;
14587
14009
  } | null | undefined;
14588
14010
  foodpandaDelivery?: {
@@ -14646,31 +14068,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
14646
14068
  anydeskPassword?: string | null | undefined;
14647
14069
  deviceName: string;
14648
14070
  }[] | null | undefined;
14649
- payoutAccount?: {
14650
- bank?: {
14651
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
14652
- accountNumber?: string | null | undefined;
14653
- holderName?: string | null | undefined;
14654
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
14655
- } | null | undefined;
14656
- ssm?: string | null | undefined;
14657
- bankStatement?: string | null | undefined;
14658
- exteriorPhoto?: string | null | undefined;
14659
- keyPerson?: string | null | undefined;
14660
- keyPersonPhone?: string | null | undefined;
14661
- keyPersonEmail?: string | null | undefined;
14662
- status: "NEW" | "PENDING" | "APPROVED";
14663
- enable: boolean;
14664
- methods: {
14665
- variant: string;
14666
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
14667
- rate: {
14668
- amount: number;
14669
- precision: number;
14670
- };
14671
- tPlus: number;
14672
- }[];
14673
- } | null | undefined;
14071
+ payoutAccount?: Record<string, any> | null | undefined;
14674
14072
  clearCount?: number | null | undefined;
14675
14073
  queueSetting?: {
14676
14074
  duration?: number | null | undefined;
@@ -14926,6 +14324,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
14926
14324
  };
14927
14325
  }, {
14928
14326
  history?: {
14327
+ billId?: string | null | undefined;
14929
14328
  restaurant?: string | null | undefined;
14930
14329
  pf_restaurant?: {
14931
14330
  channel?: string | null | undefined;
@@ -15077,6 +14476,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
15077
14476
  catalogId?: string | null | undefined;
15078
14477
  autoAccept?: boolean | null | undefined;
15079
14478
  term?: string | null | undefined;
14479
+ ignoreStock?: boolean | null | undefined;
15080
14480
  enable: boolean;
15081
14481
  } | null | undefined;
15082
14482
  foodpandaDelivery?: {
@@ -15140,31 +14540,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
15140
14540
  anydeskPassword?: string | null | undefined;
15141
14541
  deviceName: string;
15142
14542
  }[] | null | undefined;
15143
- payoutAccount?: {
15144
- bank?: {
15145
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
15146
- accountNumber?: string | null | undefined;
15147
- holderName?: string | null | undefined;
15148
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
15149
- } | null | undefined;
15150
- ssm?: string | null | undefined;
15151
- bankStatement?: string | null | undefined;
15152
- exteriorPhoto?: string | null | undefined;
15153
- keyPerson?: string | null | undefined;
15154
- keyPersonPhone?: string | null | undefined;
15155
- keyPersonEmail?: string | null | undefined;
15156
- status: "NEW" | "PENDING" | "APPROVED";
15157
- enable: boolean;
15158
- methods: {
15159
- tPlus?: number | undefined;
15160
- variant: string;
15161
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
15162
- rate: {
15163
- amount: number;
15164
- precision: number;
15165
- };
15166
- }[];
15167
- } | null | undefined;
14543
+ payoutAccount?: Record<string, any> | null | undefined;
15168
14544
  clearCount?: number | null | undefined;
15169
14545
  queueSetting?: {
15170
14546
  duration?: number | null | undefined;
@@ -15323,9 +14699,9 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
15323
14699
  regNo: string;
15324
14700
  };
15325
14701
  } | null | undefined;
15326
- billId?: string | null | undefined;
15327
14702
  appliedAt: string;
15328
14703
  }[] | null | undefined;
14704
+ billId?: string | null | undefined;
15329
14705
  frontend?: {
15330
14706
  reason: string;
15331
14707
  hide: boolean;
@@ -15501,6 +14877,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
15501
14877
  catalogId?: string | null | undefined;
15502
14878
  autoAccept?: boolean | null | undefined;
15503
14879
  term?: string | null | undefined;
14880
+ ignoreStock?: boolean | null | undefined;
15504
14881
  enable: boolean;
15505
14882
  } | null | undefined;
15506
14883
  foodpandaDelivery?: {
@@ -15564,31 +14941,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
15564
14941
  anydeskPassword?: string | null | undefined;
15565
14942
  deviceName: string;
15566
14943
  }[] | null | undefined;
15567
- payoutAccount?: {
15568
- bank?: {
15569
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
15570
- accountNumber?: string | null | undefined;
15571
- holderName?: string | null | undefined;
15572
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
15573
- } | null | undefined;
15574
- ssm?: string | null | undefined;
15575
- bankStatement?: string | null | undefined;
15576
- exteriorPhoto?: string | null | undefined;
15577
- keyPerson?: string | null | undefined;
15578
- keyPersonPhone?: string | null | undefined;
15579
- keyPersonEmail?: string | null | undefined;
15580
- status: "NEW" | "PENDING" | "APPROVED";
15581
- enable: boolean;
15582
- methods: {
15583
- tPlus?: number | undefined;
15584
- variant: string;
15585
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
15586
- rate: {
15587
- amount: number;
15588
- precision: number;
15589
- };
15590
- }[];
15591
- } | null | undefined;
14944
+ payoutAccount?: Record<string, any> | null | undefined;
15592
14945
  clearCount?: number | null | undefined;
15593
14946
  queueSetting?: {
15594
14947
  duration?: number | null | undefined;
@@ -15747,7 +15100,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
15747
15100
  regNo: string;
15748
15101
  };
15749
15102
  } | null | undefined;
15750
- billId?: string | null | undefined;
15751
15103
  claimedAt?: string | null | undefined;
15752
15104
  redeemedAt?: string | null | undefined;
15753
15105
  redeemCode?: string | null | undefined;
@@ -16012,6 +15364,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
16012
15364
  catalogId?: string | null | undefined;
16013
15365
  autoAccept?: boolean | null | undefined;
16014
15366
  term?: string | null | undefined;
15367
+ ignoreStock?: boolean | null | undefined;
16015
15368
  enable: boolean;
16016
15369
  } | null | undefined;
16017
15370
  foodpandaDelivery?: {
@@ -16075,31 +15428,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
16075
15428
  anydeskPassword?: string | null | undefined;
16076
15429
  deviceName: string;
16077
15430
  }[] | null | undefined;
16078
- payoutAccount?: {
16079
- bank?: {
16080
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
16081
- accountNumber?: string | null | undefined;
16082
- holderName?: string | null | undefined;
16083
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
16084
- } | null | undefined;
16085
- ssm?: string | null | undefined;
16086
- bankStatement?: string | null | undefined;
16087
- exteriorPhoto?: string | null | undefined;
16088
- keyPerson?: string | null | undefined;
16089
- keyPersonPhone?: string | null | undefined;
16090
- keyPersonEmail?: string | null | undefined;
16091
- status: "NEW" | "PENDING" | "APPROVED";
16092
- enable: boolean;
16093
- methods: {
16094
- tPlus?: number | undefined;
16095
- variant: string;
16096
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
16097
- rate: {
16098
- amount: number;
16099
- precision: number;
16100
- };
16101
- }[];
16102
- } | null | undefined;
15431
+ payoutAccount?: Record<string, any> | null | undefined;
16103
15432
  clearCount?: number | null | undefined;
16104
15433
  queueSetting?: {
16105
15434
  duration?: number | null | undefined;
@@ -16455,6 +15784,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
16455
15784
  };
16456
15785
  vouchers: {
16457
15786
  history?: {
15787
+ billId?: string | null | undefined;
16458
15788
  restaurant?: string | null | undefined;
16459
15789
  pf_restaurant?: {
16460
15790
  channel?: string | null | undefined;
@@ -16606,6 +15936,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
16606
15936
  catalogId?: string | null | undefined;
16607
15937
  autoAccept?: boolean | null | undefined;
16608
15938
  term?: string | null | undefined;
15939
+ ignoreStock?: boolean | null | undefined;
16609
15940
  enable: boolean;
16610
15941
  } | null | undefined;
16611
15942
  foodpandaDelivery?: {
@@ -16669,31 +16000,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
16669
16000
  anydeskPassword?: string | null | undefined;
16670
16001
  deviceName: string;
16671
16002
  }[] | null | undefined;
16672
- payoutAccount?: {
16673
- bank?: {
16674
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
16675
- accountNumber?: string | null | undefined;
16676
- holderName?: string | null | undefined;
16677
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
16678
- } | null | undefined;
16679
- ssm?: string | null | undefined;
16680
- bankStatement?: string | null | undefined;
16681
- exteriorPhoto?: string | null | undefined;
16682
- keyPerson?: string | null | undefined;
16683
- keyPersonPhone?: string | null | undefined;
16684
- keyPersonEmail?: string | null | undefined;
16685
- status: "NEW" | "PENDING" | "APPROVED";
16686
- enable: boolean;
16687
- methods: {
16688
- variant: string;
16689
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
16690
- rate: {
16691
- amount: number;
16692
- precision: number;
16693
- };
16694
- tPlus: number;
16695
- }[];
16696
- } | null | undefined;
16003
+ payoutAccount?: Record<string, any> | null | undefined;
16697
16004
  clearCount?: number | null | undefined;
16698
16005
  queueSetting?: {
16699
16006
  duration?: number | null | undefined;
@@ -16852,9 +16159,9 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
16852
16159
  regNo: string;
16853
16160
  };
16854
16161
  } | null | undefined;
16855
- billId?: string | null | undefined;
16856
16162
  appliedAt: string;
16857
16163
  }[] | null | undefined;
16164
+ billId?: string | null | undefined;
16858
16165
  frontend?: {
16859
16166
  reason: string;
16860
16167
  hide: boolean;
@@ -17030,6 +16337,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
17030
16337
  catalogId?: string | null | undefined;
17031
16338
  autoAccept?: boolean | null | undefined;
17032
16339
  term?: string | null | undefined;
16340
+ ignoreStock?: boolean | null | undefined;
17033
16341
  enable: boolean;
17034
16342
  } | null | undefined;
17035
16343
  foodpandaDelivery?: {
@@ -17093,31 +16401,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
17093
16401
  anydeskPassword?: string | null | undefined;
17094
16402
  deviceName: string;
17095
16403
  }[] | null | undefined;
17096
- payoutAccount?: {
17097
- bank?: {
17098
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
17099
- accountNumber?: string | null | undefined;
17100
- holderName?: string | null | undefined;
17101
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
17102
- } | null | undefined;
17103
- ssm?: string | null | undefined;
17104
- bankStatement?: string | null | undefined;
17105
- exteriorPhoto?: string | null | undefined;
17106
- keyPerson?: string | null | undefined;
17107
- keyPersonPhone?: string | null | undefined;
17108
- keyPersonEmail?: string | null | undefined;
17109
- status: "NEW" | "PENDING" | "APPROVED";
17110
- enable: boolean;
17111
- methods: {
17112
- variant: string;
17113
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
17114
- rate: {
17115
- amount: number;
17116
- precision: number;
17117
- };
17118
- tPlus: number;
17119
- }[];
17120
- } | null | undefined;
16404
+ payoutAccount?: Record<string, any> | null | undefined;
17121
16405
  clearCount?: number | null | undefined;
17122
16406
  queueSetting?: {
17123
16407
  duration?: number | null | undefined;
@@ -17276,7 +16560,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
17276
16560
  regNo: string;
17277
16561
  };
17278
16562
  } | null | undefined;
17279
- billId?: string | null | undefined;
17280
16563
  claimedAt?: string | null | undefined;
17281
16564
  redeemedAt?: string | null | undefined;
17282
16565
  redeemCode?: string | null | undefined;
@@ -17541,6 +16824,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
17541
16824
  catalogId?: string | null | undefined;
17542
16825
  autoAccept?: boolean | null | undefined;
17543
16826
  term?: string | null | undefined;
16827
+ ignoreStock?: boolean | null | undefined;
17544
16828
  enable: boolean;
17545
16829
  } | null | undefined;
17546
16830
  foodpandaDelivery?: {
@@ -17604,31 +16888,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
17604
16888
  anydeskPassword?: string | null | undefined;
17605
16889
  deviceName: string;
17606
16890
  }[] | null | undefined;
17607
- payoutAccount?: {
17608
- bank?: {
17609
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
17610
- accountNumber?: string | null | undefined;
17611
- holderName?: string | null | undefined;
17612
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
17613
- } | null | undefined;
17614
- ssm?: string | null | undefined;
17615
- bankStatement?: string | null | undefined;
17616
- exteriorPhoto?: string | null | undefined;
17617
- keyPerson?: string | null | undefined;
17618
- keyPersonPhone?: string | null | undefined;
17619
- keyPersonEmail?: string | null | undefined;
17620
- status: "NEW" | "PENDING" | "APPROVED";
17621
- enable: boolean;
17622
- methods: {
17623
- variant: string;
17624
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
17625
- rate: {
17626
- amount: number;
17627
- precision: number;
17628
- };
17629
- tPlus: number;
17630
- }[];
17631
- } | null | undefined;
16891
+ payoutAccount?: Record<string, any> | null | undefined;
17632
16892
  clearCount?: number | null | undefined;
17633
16893
  queueSetting?: {
17634
16894
  duration?: number | null | undefined;
@@ -18091,6 +17351,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
18091
17351
  };
18092
17352
  vouchers: {
18093
17353
  history?: {
17354
+ billId?: string | null | undefined;
18094
17355
  restaurant?: string | null | undefined;
18095
17356
  pf_restaurant?: {
18096
17357
  channel?: string | null | undefined;
@@ -18242,6 +17503,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
18242
17503
  catalogId?: string | null | undefined;
18243
17504
  autoAccept?: boolean | null | undefined;
18244
17505
  term?: string | null | undefined;
17506
+ ignoreStock?: boolean | null | undefined;
18245
17507
  enable: boolean;
18246
17508
  } | null | undefined;
18247
17509
  foodpandaDelivery?: {
@@ -18305,31 +17567,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
18305
17567
  anydeskPassword?: string | null | undefined;
18306
17568
  deviceName: string;
18307
17569
  }[] | null | undefined;
18308
- payoutAccount?: {
18309
- bank?: {
18310
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
18311
- accountNumber?: string | null | undefined;
18312
- holderName?: string | null | undefined;
18313
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
18314
- } | null | undefined;
18315
- ssm?: string | null | undefined;
18316
- bankStatement?: string | null | undefined;
18317
- exteriorPhoto?: string | null | undefined;
18318
- keyPerson?: string | null | undefined;
18319
- keyPersonPhone?: string | null | undefined;
18320
- keyPersonEmail?: string | null | undefined;
18321
- status: "NEW" | "PENDING" | "APPROVED";
18322
- enable: boolean;
18323
- methods: {
18324
- tPlus?: number | undefined;
18325
- variant: string;
18326
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
18327
- rate: {
18328
- amount: number;
18329
- precision: number;
18330
- };
18331
- }[];
18332
- } | null | undefined;
17570
+ payoutAccount?: Record<string, any> | null | undefined;
18333
17571
  clearCount?: number | null | undefined;
18334
17572
  queueSetting?: {
18335
17573
  duration?: number | null | undefined;
@@ -18488,9 +17726,9 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
18488
17726
  regNo: string;
18489
17727
  };
18490
17728
  } | null | undefined;
18491
- billId?: string | null | undefined;
18492
17729
  appliedAt: string;
18493
17730
  }[] | null | undefined;
17731
+ billId?: string | null | undefined;
18494
17732
  frontend?: {
18495
17733
  reason: string;
18496
17734
  hide: boolean;
@@ -18666,6 +17904,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
18666
17904
  catalogId?: string | null | undefined;
18667
17905
  autoAccept?: boolean | null | undefined;
18668
17906
  term?: string | null | undefined;
17907
+ ignoreStock?: boolean | null | undefined;
18669
17908
  enable: boolean;
18670
17909
  } | null | undefined;
18671
17910
  foodpandaDelivery?: {
@@ -18729,31 +17968,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
18729
17968
  anydeskPassword?: string | null | undefined;
18730
17969
  deviceName: string;
18731
17970
  }[] | null | undefined;
18732
- payoutAccount?: {
18733
- bank?: {
18734
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
18735
- accountNumber?: string | null | undefined;
18736
- holderName?: string | null | undefined;
18737
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
18738
- } | null | undefined;
18739
- ssm?: string | null | undefined;
18740
- bankStatement?: string | null | undefined;
18741
- exteriorPhoto?: string | null | undefined;
18742
- keyPerson?: string | null | undefined;
18743
- keyPersonPhone?: string | null | undefined;
18744
- keyPersonEmail?: string | null | undefined;
18745
- status: "NEW" | "PENDING" | "APPROVED";
18746
- enable: boolean;
18747
- methods: {
18748
- tPlus?: number | undefined;
18749
- variant: string;
18750
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
18751
- rate: {
18752
- amount: number;
18753
- precision: number;
18754
- };
18755
- }[];
18756
- } | null | undefined;
17971
+ payoutAccount?: Record<string, any> | null | undefined;
18757
17972
  clearCount?: number | null | undefined;
18758
17973
  queueSetting?: {
18759
17974
  duration?: number | null | undefined;
@@ -18912,7 +18127,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
18912
18127
  regNo: string;
18913
18128
  };
18914
18129
  } | null | undefined;
18915
- billId?: string | null | undefined;
18916
18130
  claimedAt?: string | null | undefined;
18917
18131
  redeemedAt?: string | null | undefined;
18918
18132
  redeemCode?: string | null | undefined;
@@ -19177,6 +18391,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
19177
18391
  catalogId?: string | null | undefined;
19178
18392
  autoAccept?: boolean | null | undefined;
19179
18393
  term?: string | null | undefined;
18394
+ ignoreStock?: boolean | null | undefined;
19180
18395
  enable: boolean;
19181
18396
  } | null | undefined;
19182
18397
  foodpandaDelivery?: {
@@ -19240,31 +18455,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
19240
18455
  anydeskPassword?: string | null | undefined;
19241
18456
  deviceName: string;
19242
18457
  }[] | null | undefined;
19243
- payoutAccount?: {
19244
- bank?: {
19245
- type?: "CURRENT_ACCOUNT" | "SAVING_ACCOUNT" | null | undefined;
19246
- accountNumber?: string | null | undefined;
19247
- holderName?: string | null | undefined;
19248
- name: "MAYBANK" | "CIMB_BANK" | "RHB_BANK" | "BANK_ISLAM" | "BANK_MUAMALAT" | "BANK_RAKYAT" | "BANK_SIMPANAN_NASIONAL" | "CITIBANK" | "HONG_LEONG_BANK" | "HSBC_BANK" | "OCBC_BANK" | "PUBLIC_BANK" | "AFFIN_BANK" | "AMBANK" | "AGRO_BANK" | "ALLIANCE_BANK" | "AL_RAJHI_BANK" | "BANK_OF_CHINA" | "BANK_OF_AMERICA" | "BANK_OF_TOKYO_MITSUBISHI_UFJ" | "BNP_PARIBAS" | "DEUTSCHE_BANK" | "INDUSTRIAL_COMMERCIAL_BANK_OF_CHINA" | "JP_MORGAN_CHASE_BANK" | "KUWAIT_FINANCE_HOUSE" | "MIZUHO_BANK" | "STANDARD_CHARTERED_BANK" | "SUMITOMO_MITSUI_BANKING_CORPORATION" | "THE_ROYAL_BANK_OF_SCOTLAND" | "UNITED_OVERSEAS_BANK";
19249
- } | null | undefined;
19250
- ssm?: string | null | undefined;
19251
- bankStatement?: string | null | undefined;
19252
- exteriorPhoto?: string | null | undefined;
19253
- keyPerson?: string | null | undefined;
19254
- keyPersonPhone?: string | null | undefined;
19255
- keyPersonEmail?: string | null | undefined;
19256
- status: "NEW" | "PENDING" | "APPROVED";
19257
- enable: boolean;
19258
- methods: {
19259
- tPlus?: number | undefined;
19260
- variant: string;
19261
- issuer: "FEEDME" | "OTHER" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME";
19262
- rate: {
19263
- amount: number;
19264
- precision: number;
19265
- };
19266
- }[];
19267
- } | null | undefined;
18458
+ payoutAccount?: Record<string, any> | null | undefined;
19268
18459
  clearCount?: number | null | undefined;
19269
18460
  queueSetting?: {
19270
18461
  duration?: number | null | undefined;