@feedmepos/mf-order-setting 0.0.33 → 0.0.35
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.
- package/dist/{KioskDevicesView-CxZI99me.js → KioskDevicesView-wPKewwAS.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-EGj4fxeN.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BCJPU2la.js} +2 -2
- package/dist/KioskSettingView-CV54HpY2.js +843 -0
- package/dist/{KioskView-IUQTvUF8.js → KioskView-B4mggCt0.js} +41 -34
- package/dist/OrderSettingsView-Cp3aV3Ps.js +50624 -0
- package/dist/{app-cd45Ryph.js → app-DlQj6ZP0.js} +26 -15
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-CRAlrjJy.js → dayjs.min-C_sCJHuD.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +11 -0
- package/dist/frontend/mf-order/src/main.d.ts +11 -0
- package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +393 -393
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +12 -0
- package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +3 -3
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +75 -75
- package/dist/frontend/mf-order/src/stores/table-settings.d.ts +2 -0
- package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +50 -50
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskPaymentTypeSection.vue.d.ts +8 -0
- package/dist/frontend/mf-order/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue.d.ts +5 -0
- package/dist/frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeRule.vue.d.ts +2 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-DLWAy-3K.js → index-Cvhc_ltu.js} +2 -2
- package/dist/menu.dto-CeUdKgTW.js +103445 -0
- package/dist/package/entity/booking/booking.do.d.ts +502 -502
- package/dist/package/entity/delivery/delivery.dto.d.ts +100 -100
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +17 -0
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +1973 -836
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +32 -0
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +555 -555
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +15 -0
- package/dist/package/entity/order/order.do.d.ts +5 -0
- package/dist/package/entity/order/order.dto.d.ts +208 -200
- package/dist/package/entity/order/order.enum.d.ts +1 -1
- package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +4 -4
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +100 -100
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +100 -100
- package/dist/package/entity/order-platform/menu.dto.d.ts +410 -410
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +100 -100
- package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +42 -0
- package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +32 -0
- package/dist/package/entity/order-setting/order-setting.do.d.ts +22 -0
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +44 -0
- package/dist/package/entity/queue/queue.do.d.ts +34 -34
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +22 -0
- package/dist/package/entity/websocket/websocket.dto.d.ts +48 -0
- package/package.json +3 -3
- package/src/locales/en-US.json +4 -0
- package/src/locales/th-TH.json +4 -0
- package/src/locales/zh-CN.json +3 -0
- package/src/stores/order-setting/mapper.ts +230 -168
- package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +42 -2
- package/src/views/order-settings/delivery/DeliverySetting.vue +11 -16
- package/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue +26 -9
- package/src/views/order-settings/delivery/integrated-delivery/DeliverooSetting.vue +12 -1
- package/dist/KioskSettingView-CTDY8__s.js +0 -821
- package/dist/OrderSettingsView-VLE9yxNt.js +0 -74796
- package/dist/menu.dto-DGDI6XwH.js +0 -126424
|
@@ -5247,31 +5247,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
5247
5247
|
}>>>;
|
|
5248
5248
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
5249
5249
|
}, "strip", z.ZodTypeAny, {
|
|
5250
|
-
pickup?: {
|
|
5251
|
-
catalogId?: string | null | undefined;
|
|
5252
|
-
autoAccept?: boolean | null | undefined;
|
|
5253
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5254
|
-
offlinePaymentTypes?: {
|
|
5255
|
-
name: string;
|
|
5256
|
-
instruction: string;
|
|
5257
|
-
}[] | null | undefined;
|
|
5258
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
5259
|
-
ignoreStock?: boolean | null | undefined;
|
|
5260
|
-
pickupTime?: {
|
|
5261
|
-
day: {
|
|
5262
|
-
max: number;
|
|
5263
|
-
min: number;
|
|
5264
|
-
};
|
|
5265
|
-
} | null | undefined;
|
|
5266
|
-
pickupPointConfig?: {
|
|
5267
|
-
restaurantEnable: boolean;
|
|
5268
|
-
points: {
|
|
5269
|
-
name: string;
|
|
5270
|
-
address: string;
|
|
5271
|
-
coordinates: number[];
|
|
5272
|
-
}[];
|
|
5273
|
-
} | null | undefined;
|
|
5274
|
-
} | null | undefined;
|
|
5275
5250
|
channel?: string | null | undefined;
|
|
5276
5251
|
machineId?: string | null | undefined;
|
|
5277
5252
|
catalogId?: string | null | undefined;
|
|
@@ -5373,6 +5348,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
5373
5348
|
}[];
|
|
5374
5349
|
term: string;
|
|
5375
5350
|
} | null | undefined;
|
|
5351
|
+
pickup?: {
|
|
5352
|
+
catalogId?: string | null | undefined;
|
|
5353
|
+
autoAccept?: boolean | null | undefined;
|
|
5354
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5355
|
+
offlinePaymentTypes?: {
|
|
5356
|
+
name: string;
|
|
5357
|
+
instruction: string;
|
|
5358
|
+
}[] | null | undefined;
|
|
5359
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
5360
|
+
ignoreStock?: boolean | null | undefined;
|
|
5361
|
+
pickupTime?: {
|
|
5362
|
+
day: {
|
|
5363
|
+
max: number;
|
|
5364
|
+
min: number;
|
|
5365
|
+
};
|
|
5366
|
+
} | null | undefined;
|
|
5367
|
+
pickupPointConfig?: {
|
|
5368
|
+
restaurantEnable: boolean;
|
|
5369
|
+
points: {
|
|
5370
|
+
name: string;
|
|
5371
|
+
address: string;
|
|
5372
|
+
coordinates: number[];
|
|
5373
|
+
}[];
|
|
5374
|
+
} | null | undefined;
|
|
5375
|
+
} | null | undefined;
|
|
5376
5376
|
dineIn?: {
|
|
5377
5377
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5378
5378
|
offlinePaymentTypes?: {
|
|
@@ -5626,31 +5626,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
5626
5626
|
regNo: string;
|
|
5627
5627
|
};
|
|
5628
5628
|
}, {
|
|
5629
|
-
pickup?: {
|
|
5630
|
-
catalogId?: string | null | undefined;
|
|
5631
|
-
autoAccept?: boolean | null | undefined;
|
|
5632
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5633
|
-
offlinePaymentTypes?: {
|
|
5634
|
-
name: string;
|
|
5635
|
-
instruction: string;
|
|
5636
|
-
}[] | null | undefined;
|
|
5637
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
5638
|
-
ignoreStock?: boolean | null | undefined;
|
|
5639
|
-
pickupTime?: {
|
|
5640
|
-
day: {
|
|
5641
|
-
max: number;
|
|
5642
|
-
min: number;
|
|
5643
|
-
};
|
|
5644
|
-
} | null | undefined;
|
|
5645
|
-
pickupPointConfig?: {
|
|
5646
|
-
restaurantEnable: boolean;
|
|
5647
|
-
points: {
|
|
5648
|
-
name: string;
|
|
5649
|
-
address: string;
|
|
5650
|
-
coordinates: number[];
|
|
5651
|
-
}[];
|
|
5652
|
-
} | null | undefined;
|
|
5653
|
-
} | null | undefined;
|
|
5654
5629
|
channel?: string | null | undefined;
|
|
5655
5630
|
machineId?: string | null | undefined;
|
|
5656
5631
|
catalogId?: string | null | undefined;
|
|
@@ -5752,6 +5727,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
5752
5727
|
}[];
|
|
5753
5728
|
term: string;
|
|
5754
5729
|
} | null | undefined;
|
|
5730
|
+
pickup?: {
|
|
5731
|
+
catalogId?: string | null | undefined;
|
|
5732
|
+
autoAccept?: boolean | null | undefined;
|
|
5733
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5734
|
+
offlinePaymentTypes?: {
|
|
5735
|
+
name: string;
|
|
5736
|
+
instruction: string;
|
|
5737
|
+
}[] | null | undefined;
|
|
5738
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
5739
|
+
ignoreStock?: boolean | null | undefined;
|
|
5740
|
+
pickupTime?: {
|
|
5741
|
+
day: {
|
|
5742
|
+
max: number;
|
|
5743
|
+
min: number;
|
|
5744
|
+
};
|
|
5745
|
+
} | null | undefined;
|
|
5746
|
+
pickupPointConfig?: {
|
|
5747
|
+
restaurantEnable: boolean;
|
|
5748
|
+
points: {
|
|
5749
|
+
name: string;
|
|
5750
|
+
address: string;
|
|
5751
|
+
coordinates: number[];
|
|
5752
|
+
}[];
|
|
5753
|
+
} | null | undefined;
|
|
5754
|
+
} | null | undefined;
|
|
5755
5755
|
dineIn?: {
|
|
5756
5756
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
5757
5757
|
offlinePaymentTypes?: {
|
|
@@ -6553,31 +6553,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
6553
6553
|
menuVersion: string;
|
|
6554
6554
|
} | null | undefined;
|
|
6555
6555
|
pf_targetRestaurant?: {
|
|
6556
|
-
pickup?: {
|
|
6557
|
-
catalogId?: string | null | undefined;
|
|
6558
|
-
autoAccept?: boolean | null | undefined;
|
|
6559
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6560
|
-
offlinePaymentTypes?: {
|
|
6561
|
-
name: string;
|
|
6562
|
-
instruction: string;
|
|
6563
|
-
}[] | null | undefined;
|
|
6564
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
6565
|
-
ignoreStock?: boolean | null | undefined;
|
|
6566
|
-
pickupTime?: {
|
|
6567
|
-
day: {
|
|
6568
|
-
max: number;
|
|
6569
|
-
min: number;
|
|
6570
|
-
};
|
|
6571
|
-
} | null | undefined;
|
|
6572
|
-
pickupPointConfig?: {
|
|
6573
|
-
restaurantEnable: boolean;
|
|
6574
|
-
points: {
|
|
6575
|
-
name: string;
|
|
6576
|
-
address: string;
|
|
6577
|
-
coordinates: number[];
|
|
6578
|
-
}[];
|
|
6579
|
-
} | null | undefined;
|
|
6580
|
-
} | null | undefined;
|
|
6581
6556
|
channel?: string | null | undefined;
|
|
6582
6557
|
machineId?: string | null | undefined;
|
|
6583
6558
|
catalogId?: string | null | undefined;
|
|
@@ -6679,6 +6654,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
6679
6654
|
}[];
|
|
6680
6655
|
term: string;
|
|
6681
6656
|
} | null | undefined;
|
|
6657
|
+
pickup?: {
|
|
6658
|
+
catalogId?: string | null | undefined;
|
|
6659
|
+
autoAccept?: boolean | null | undefined;
|
|
6660
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6661
|
+
offlinePaymentTypes?: {
|
|
6662
|
+
name: string;
|
|
6663
|
+
instruction: string;
|
|
6664
|
+
}[] | null | undefined;
|
|
6665
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
6666
|
+
ignoreStock?: boolean | null | undefined;
|
|
6667
|
+
pickupTime?: {
|
|
6668
|
+
day: {
|
|
6669
|
+
max: number;
|
|
6670
|
+
min: number;
|
|
6671
|
+
};
|
|
6672
|
+
} | null | undefined;
|
|
6673
|
+
pickupPointConfig?: {
|
|
6674
|
+
restaurantEnable: boolean;
|
|
6675
|
+
points: {
|
|
6676
|
+
name: string;
|
|
6677
|
+
address: string;
|
|
6678
|
+
coordinates: number[];
|
|
6679
|
+
}[];
|
|
6680
|
+
} | null | undefined;
|
|
6681
|
+
} | null | undefined;
|
|
6682
6682
|
dineIn?: {
|
|
6683
6683
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
6684
6684
|
offlinePaymentTypes?: {
|
|
@@ -7115,31 +7115,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
7115
7115
|
menuVersion: string;
|
|
7116
7116
|
} | null | undefined;
|
|
7117
7117
|
pf_targetRestaurant?: {
|
|
7118
|
-
pickup?: {
|
|
7119
|
-
catalogId?: string | null | undefined;
|
|
7120
|
-
autoAccept?: boolean | null | undefined;
|
|
7121
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
7122
|
-
offlinePaymentTypes?: {
|
|
7123
|
-
name: string;
|
|
7124
|
-
instruction: string;
|
|
7125
|
-
}[] | null | undefined;
|
|
7126
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
7127
|
-
ignoreStock?: boolean | null | undefined;
|
|
7128
|
-
pickupTime?: {
|
|
7129
|
-
day: {
|
|
7130
|
-
max: number;
|
|
7131
|
-
min: number;
|
|
7132
|
-
};
|
|
7133
|
-
} | null | undefined;
|
|
7134
|
-
pickupPointConfig?: {
|
|
7135
|
-
restaurantEnable: boolean;
|
|
7136
|
-
points: {
|
|
7137
|
-
name: string;
|
|
7138
|
-
address: string;
|
|
7139
|
-
coordinates: number[];
|
|
7140
|
-
}[];
|
|
7141
|
-
} | null | undefined;
|
|
7142
|
-
} | null | undefined;
|
|
7143
7118
|
channel?: string | null | undefined;
|
|
7144
7119
|
machineId?: string | null | undefined;
|
|
7145
7120
|
catalogId?: string | null | undefined;
|
|
@@ -7241,6 +7216,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
7241
7216
|
}[];
|
|
7242
7217
|
term: string;
|
|
7243
7218
|
} | null | undefined;
|
|
7219
|
+
pickup?: {
|
|
7220
|
+
catalogId?: string | null | undefined;
|
|
7221
|
+
autoAccept?: boolean | null | undefined;
|
|
7222
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
7223
|
+
offlinePaymentTypes?: {
|
|
7224
|
+
name: string;
|
|
7225
|
+
instruction: string;
|
|
7226
|
+
}[] | null | undefined;
|
|
7227
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
7228
|
+
ignoreStock?: boolean | null | undefined;
|
|
7229
|
+
pickupTime?: {
|
|
7230
|
+
day: {
|
|
7231
|
+
max: number;
|
|
7232
|
+
min: number;
|
|
7233
|
+
};
|
|
7234
|
+
} | null | undefined;
|
|
7235
|
+
pickupPointConfig?: {
|
|
7236
|
+
restaurantEnable: boolean;
|
|
7237
|
+
points: {
|
|
7238
|
+
name: string;
|
|
7239
|
+
address: string;
|
|
7240
|
+
coordinates: number[];
|
|
7241
|
+
}[];
|
|
7242
|
+
} | null | undefined;
|
|
7243
|
+
} | null | undefined;
|
|
7244
7244
|
dineIn?: {
|
|
7245
7245
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
7246
7246
|
offlinePaymentTypes?: {
|
|
@@ -9695,31 +9695,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
9695
9695
|
}>>>;
|
|
9696
9696
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
9697
9697
|
}, "strip", z.ZodTypeAny, {
|
|
9698
|
-
pickup?: {
|
|
9699
|
-
catalogId?: string | null | undefined;
|
|
9700
|
-
autoAccept?: boolean | null | undefined;
|
|
9701
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
9702
|
-
offlinePaymentTypes?: {
|
|
9703
|
-
name: string;
|
|
9704
|
-
instruction: string;
|
|
9705
|
-
}[] | null | undefined;
|
|
9706
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
9707
|
-
ignoreStock?: boolean | null | undefined;
|
|
9708
|
-
pickupTime?: {
|
|
9709
|
-
day: {
|
|
9710
|
-
max: number;
|
|
9711
|
-
min: number;
|
|
9712
|
-
};
|
|
9713
|
-
} | null | undefined;
|
|
9714
|
-
pickupPointConfig?: {
|
|
9715
|
-
restaurantEnable: boolean;
|
|
9716
|
-
points: {
|
|
9717
|
-
name: string;
|
|
9718
|
-
address: string;
|
|
9719
|
-
coordinates: number[];
|
|
9720
|
-
}[];
|
|
9721
|
-
} | null | undefined;
|
|
9722
|
-
} | null | undefined;
|
|
9723
9698
|
channel?: string | null | undefined;
|
|
9724
9699
|
machineId?: string | null | undefined;
|
|
9725
9700
|
catalogId?: string | null | undefined;
|
|
@@ -9821,6 +9796,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
9821
9796
|
}[];
|
|
9822
9797
|
term: string;
|
|
9823
9798
|
} | null | undefined;
|
|
9799
|
+
pickup?: {
|
|
9800
|
+
catalogId?: string | null | undefined;
|
|
9801
|
+
autoAccept?: boolean | null | undefined;
|
|
9802
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
9803
|
+
offlinePaymentTypes?: {
|
|
9804
|
+
name: string;
|
|
9805
|
+
instruction: string;
|
|
9806
|
+
}[] | null | undefined;
|
|
9807
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
9808
|
+
ignoreStock?: boolean | null | undefined;
|
|
9809
|
+
pickupTime?: {
|
|
9810
|
+
day: {
|
|
9811
|
+
max: number;
|
|
9812
|
+
min: number;
|
|
9813
|
+
};
|
|
9814
|
+
} | null | undefined;
|
|
9815
|
+
pickupPointConfig?: {
|
|
9816
|
+
restaurantEnable: boolean;
|
|
9817
|
+
points: {
|
|
9818
|
+
name: string;
|
|
9819
|
+
address: string;
|
|
9820
|
+
coordinates: number[];
|
|
9821
|
+
}[];
|
|
9822
|
+
} | null | undefined;
|
|
9823
|
+
} | null | undefined;
|
|
9824
9824
|
dineIn?: {
|
|
9825
9825
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
9826
9826
|
offlinePaymentTypes?: {
|
|
@@ -10074,36 +10074,11 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
10074
10074
|
regNo: string;
|
|
10075
10075
|
};
|
|
10076
10076
|
}, {
|
|
10077
|
-
|
|
10078
|
-
|
|
10079
|
-
|
|
10080
|
-
|
|
10081
|
-
|
|
10082
|
-
name: string;
|
|
10083
|
-
instruction: string;
|
|
10084
|
-
}[] | null | undefined;
|
|
10085
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
10086
|
-
ignoreStock?: boolean | null | undefined;
|
|
10087
|
-
pickupTime?: {
|
|
10088
|
-
day: {
|
|
10089
|
-
max: number;
|
|
10090
|
-
min: number;
|
|
10091
|
-
};
|
|
10092
|
-
} | null | undefined;
|
|
10093
|
-
pickupPointConfig?: {
|
|
10094
|
-
restaurantEnable: boolean;
|
|
10095
|
-
points: {
|
|
10096
|
-
name: string;
|
|
10097
|
-
address: string;
|
|
10098
|
-
coordinates: number[];
|
|
10099
|
-
}[];
|
|
10100
|
-
} | null | undefined;
|
|
10101
|
-
} | null | undefined;
|
|
10102
|
-
channel?: string | null | undefined;
|
|
10103
|
-
machineId?: string | null | undefined;
|
|
10104
|
-
catalogId?: string | null | undefined;
|
|
10105
|
-
customAttributes?: Record<string, any> | null | undefined;
|
|
10106
|
-
takeaway?: {
|
|
10077
|
+
channel?: string | null | undefined;
|
|
10078
|
+
machineId?: string | null | undefined;
|
|
10079
|
+
catalogId?: string | null | undefined;
|
|
10080
|
+
customAttributes?: Record<string, any> | null | undefined;
|
|
10081
|
+
takeaway?: {
|
|
10107
10082
|
catalogId?: string | null | undefined;
|
|
10108
10083
|
} | null | undefined;
|
|
10109
10084
|
inHouseDelivery?: {
|
|
@@ -10200,6 +10175,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
10200
10175
|
}[];
|
|
10201
10176
|
term: string;
|
|
10202
10177
|
} | null | undefined;
|
|
10178
|
+
pickup?: {
|
|
10179
|
+
catalogId?: string | null | undefined;
|
|
10180
|
+
autoAccept?: boolean | null | undefined;
|
|
10181
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10182
|
+
offlinePaymentTypes?: {
|
|
10183
|
+
name: string;
|
|
10184
|
+
instruction: string;
|
|
10185
|
+
}[] | null | undefined;
|
|
10186
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
10187
|
+
ignoreStock?: boolean | null | undefined;
|
|
10188
|
+
pickupTime?: {
|
|
10189
|
+
day: {
|
|
10190
|
+
max: number;
|
|
10191
|
+
min: number;
|
|
10192
|
+
};
|
|
10193
|
+
} | null | undefined;
|
|
10194
|
+
pickupPointConfig?: {
|
|
10195
|
+
restaurantEnable: boolean;
|
|
10196
|
+
points: {
|
|
10197
|
+
name: string;
|
|
10198
|
+
address: string;
|
|
10199
|
+
coordinates: number[];
|
|
10200
|
+
}[];
|
|
10201
|
+
} | null | undefined;
|
|
10202
|
+
} | null | undefined;
|
|
10203
10203
|
dineIn?: {
|
|
10204
10204
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
10205
10205
|
offlinePaymentTypes?: {
|
|
@@ -12554,31 +12554,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
12554
12554
|
}>>>;
|
|
12555
12555
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
12556
12556
|
}, "strip", z.ZodTypeAny, {
|
|
12557
|
-
pickup?: {
|
|
12558
|
-
catalogId?: string | null | undefined;
|
|
12559
|
-
autoAccept?: boolean | null | undefined;
|
|
12560
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
12561
|
-
offlinePaymentTypes?: {
|
|
12562
|
-
name: string;
|
|
12563
|
-
instruction: string;
|
|
12564
|
-
}[] | null | undefined;
|
|
12565
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
12566
|
-
ignoreStock?: boolean | null | undefined;
|
|
12567
|
-
pickupTime?: {
|
|
12568
|
-
day: {
|
|
12569
|
-
max: number;
|
|
12570
|
-
min: number;
|
|
12571
|
-
};
|
|
12572
|
-
} | null | undefined;
|
|
12573
|
-
pickupPointConfig?: {
|
|
12574
|
-
restaurantEnable: boolean;
|
|
12575
|
-
points: {
|
|
12576
|
-
name: string;
|
|
12577
|
-
address: string;
|
|
12578
|
-
coordinates: number[];
|
|
12579
|
-
}[];
|
|
12580
|
-
} | null | undefined;
|
|
12581
|
-
} | null | undefined;
|
|
12582
12557
|
channel?: string | null | undefined;
|
|
12583
12558
|
machineId?: string | null | undefined;
|
|
12584
12559
|
catalogId?: string | null | undefined;
|
|
@@ -12680,6 +12655,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
12680
12655
|
}[];
|
|
12681
12656
|
term: string;
|
|
12682
12657
|
} | null | undefined;
|
|
12658
|
+
pickup?: {
|
|
12659
|
+
catalogId?: string | null | undefined;
|
|
12660
|
+
autoAccept?: boolean | null | undefined;
|
|
12661
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
12662
|
+
offlinePaymentTypes?: {
|
|
12663
|
+
name: string;
|
|
12664
|
+
instruction: string;
|
|
12665
|
+
}[] | null | undefined;
|
|
12666
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
12667
|
+
ignoreStock?: boolean | null | undefined;
|
|
12668
|
+
pickupTime?: {
|
|
12669
|
+
day: {
|
|
12670
|
+
max: number;
|
|
12671
|
+
min: number;
|
|
12672
|
+
};
|
|
12673
|
+
} | null | undefined;
|
|
12674
|
+
pickupPointConfig?: {
|
|
12675
|
+
restaurantEnable: boolean;
|
|
12676
|
+
points: {
|
|
12677
|
+
name: string;
|
|
12678
|
+
address: string;
|
|
12679
|
+
coordinates: number[];
|
|
12680
|
+
}[];
|
|
12681
|
+
} | null | undefined;
|
|
12682
|
+
} | null | undefined;
|
|
12683
12683
|
dineIn?: {
|
|
12684
12684
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
12685
12685
|
offlinePaymentTypes?: {
|
|
@@ -12933,31 +12933,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
12933
12933
|
regNo: string;
|
|
12934
12934
|
};
|
|
12935
12935
|
}, {
|
|
12936
|
-
pickup?: {
|
|
12937
|
-
catalogId?: string | null | undefined;
|
|
12938
|
-
autoAccept?: boolean | null | undefined;
|
|
12939
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
12940
|
-
offlinePaymentTypes?: {
|
|
12941
|
-
name: string;
|
|
12942
|
-
instruction: string;
|
|
12943
|
-
}[] | null | undefined;
|
|
12944
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
12945
|
-
ignoreStock?: boolean | null | undefined;
|
|
12946
|
-
pickupTime?: {
|
|
12947
|
-
day: {
|
|
12948
|
-
max: number;
|
|
12949
|
-
min: number;
|
|
12950
|
-
};
|
|
12951
|
-
} | null | undefined;
|
|
12952
|
-
pickupPointConfig?: {
|
|
12953
|
-
restaurantEnable: boolean;
|
|
12954
|
-
points: {
|
|
12955
|
-
name: string;
|
|
12956
|
-
address: string;
|
|
12957
|
-
coordinates: number[];
|
|
12958
|
-
}[];
|
|
12959
|
-
} | null | undefined;
|
|
12960
|
-
} | null | undefined;
|
|
12961
12936
|
channel?: string | null | undefined;
|
|
12962
12937
|
machineId?: string | null | undefined;
|
|
12963
12938
|
catalogId?: string | null | undefined;
|
|
@@ -13059,6 +13034,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
13059
13034
|
}[];
|
|
13060
13035
|
term: string;
|
|
13061
13036
|
} | null | undefined;
|
|
13037
|
+
pickup?: {
|
|
13038
|
+
catalogId?: string | null | undefined;
|
|
13039
|
+
autoAccept?: boolean | null | undefined;
|
|
13040
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13041
|
+
offlinePaymentTypes?: {
|
|
13042
|
+
name: string;
|
|
13043
|
+
instruction: string;
|
|
13044
|
+
}[] | null | undefined;
|
|
13045
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13046
|
+
ignoreStock?: boolean | null | undefined;
|
|
13047
|
+
pickupTime?: {
|
|
13048
|
+
day: {
|
|
13049
|
+
max: number;
|
|
13050
|
+
min: number;
|
|
13051
|
+
};
|
|
13052
|
+
} | null | undefined;
|
|
13053
|
+
pickupPointConfig?: {
|
|
13054
|
+
restaurantEnable: boolean;
|
|
13055
|
+
points: {
|
|
13056
|
+
name: string;
|
|
13057
|
+
address: string;
|
|
13058
|
+
coordinates: number[];
|
|
13059
|
+
}[];
|
|
13060
|
+
} | null | undefined;
|
|
13061
|
+
} | null | undefined;
|
|
13062
13062
|
dineIn?: {
|
|
13063
13063
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13064
13064
|
offlinePaymentTypes?: {
|
|
@@ -13317,31 +13317,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
13317
13317
|
billId?: string | null | undefined;
|
|
13318
13318
|
restaurant?: string | null | undefined;
|
|
13319
13319
|
pf_restaurant?: {
|
|
13320
|
-
pickup?: {
|
|
13321
|
-
catalogId?: string | null | undefined;
|
|
13322
|
-
autoAccept?: boolean | null | undefined;
|
|
13323
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13324
|
-
offlinePaymentTypes?: {
|
|
13325
|
-
name: string;
|
|
13326
|
-
instruction: string;
|
|
13327
|
-
}[] | null | undefined;
|
|
13328
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13329
|
-
ignoreStock?: boolean | null | undefined;
|
|
13330
|
-
pickupTime?: {
|
|
13331
|
-
day: {
|
|
13332
|
-
max: number;
|
|
13333
|
-
min: number;
|
|
13334
|
-
};
|
|
13335
|
-
} | null | undefined;
|
|
13336
|
-
pickupPointConfig?: {
|
|
13337
|
-
restaurantEnable: boolean;
|
|
13338
|
-
points: {
|
|
13339
|
-
name: string;
|
|
13340
|
-
address: string;
|
|
13341
|
-
coordinates: number[];
|
|
13342
|
-
}[];
|
|
13343
|
-
} | null | undefined;
|
|
13344
|
-
} | null | undefined;
|
|
13345
13320
|
channel?: string | null | undefined;
|
|
13346
13321
|
machineId?: string | null | undefined;
|
|
13347
13322
|
catalogId?: string | null | undefined;
|
|
@@ -13443,6 +13418,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
13443
13418
|
}[];
|
|
13444
13419
|
term: string;
|
|
13445
13420
|
} | null | undefined;
|
|
13421
|
+
pickup?: {
|
|
13422
|
+
catalogId?: string | null | undefined;
|
|
13423
|
+
autoAccept?: boolean | null | undefined;
|
|
13424
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13425
|
+
offlinePaymentTypes?: {
|
|
13426
|
+
name: string;
|
|
13427
|
+
instruction: string;
|
|
13428
|
+
}[] | null | undefined;
|
|
13429
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13430
|
+
ignoreStock?: boolean | null | undefined;
|
|
13431
|
+
pickupTime?: {
|
|
13432
|
+
day: {
|
|
13433
|
+
max: number;
|
|
13434
|
+
min: number;
|
|
13435
|
+
};
|
|
13436
|
+
} | null | undefined;
|
|
13437
|
+
pickupPointConfig?: {
|
|
13438
|
+
restaurantEnable: boolean;
|
|
13439
|
+
points: {
|
|
13440
|
+
name: string;
|
|
13441
|
+
address: string;
|
|
13442
|
+
coordinates: number[];
|
|
13443
|
+
}[];
|
|
13444
|
+
} | null | undefined;
|
|
13445
|
+
} | null | undefined;
|
|
13446
13446
|
dineIn?: {
|
|
13447
13447
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13448
13448
|
offlinePaymentTypes?: {
|
|
@@ -13701,31 +13701,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
13701
13701
|
billId?: string | null | undefined;
|
|
13702
13702
|
restaurant?: string | null | undefined;
|
|
13703
13703
|
pf_restaurant?: {
|
|
13704
|
-
pickup?: {
|
|
13705
|
-
catalogId?: string | null | undefined;
|
|
13706
|
-
autoAccept?: boolean | null | undefined;
|
|
13707
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13708
|
-
offlinePaymentTypes?: {
|
|
13709
|
-
name: string;
|
|
13710
|
-
instruction: string;
|
|
13711
|
-
}[] | null | undefined;
|
|
13712
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13713
|
-
ignoreStock?: boolean | null | undefined;
|
|
13714
|
-
pickupTime?: {
|
|
13715
|
-
day: {
|
|
13716
|
-
max: number;
|
|
13717
|
-
min: number;
|
|
13718
|
-
};
|
|
13719
|
-
} | null | undefined;
|
|
13720
|
-
pickupPointConfig?: {
|
|
13721
|
-
restaurantEnable: boolean;
|
|
13722
|
-
points: {
|
|
13723
|
-
name: string;
|
|
13724
|
-
address: string;
|
|
13725
|
-
coordinates: number[];
|
|
13726
|
-
}[];
|
|
13727
|
-
} | null | undefined;
|
|
13728
|
-
} | null | undefined;
|
|
13729
13704
|
channel?: string | null | undefined;
|
|
13730
13705
|
machineId?: string | null | undefined;
|
|
13731
13706
|
catalogId?: string | null | undefined;
|
|
@@ -13827,6 +13802,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
13827
13802
|
}[];
|
|
13828
13803
|
term: string;
|
|
13829
13804
|
} | null | undefined;
|
|
13805
|
+
pickup?: {
|
|
13806
|
+
catalogId?: string | null | undefined;
|
|
13807
|
+
autoAccept?: boolean | null | undefined;
|
|
13808
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13809
|
+
offlinePaymentTypes?: {
|
|
13810
|
+
name: string;
|
|
13811
|
+
instruction: string;
|
|
13812
|
+
}[] | null | undefined;
|
|
13813
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
13814
|
+
ignoreStock?: boolean | null | undefined;
|
|
13815
|
+
pickupTime?: {
|
|
13816
|
+
day: {
|
|
13817
|
+
max: number;
|
|
13818
|
+
min: number;
|
|
13819
|
+
};
|
|
13820
|
+
} | null | undefined;
|
|
13821
|
+
pickupPointConfig?: {
|
|
13822
|
+
restaurantEnable: boolean;
|
|
13823
|
+
points: {
|
|
13824
|
+
name: string;
|
|
13825
|
+
address: string;
|
|
13826
|
+
coordinates: number[];
|
|
13827
|
+
}[];
|
|
13828
|
+
} | null | undefined;
|
|
13829
|
+
} | null | undefined;
|
|
13830
13830
|
dineIn?: {
|
|
13831
13831
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
13832
13832
|
offlinePaymentTypes?: {
|
|
@@ -14305,31 +14305,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
14305
14305
|
billId?: string | null | undefined;
|
|
14306
14306
|
restaurant?: string | null | undefined;
|
|
14307
14307
|
pf_restaurant?: {
|
|
14308
|
-
pickup?: {
|
|
14309
|
-
catalogId?: string | null | undefined;
|
|
14310
|
-
autoAccept?: boolean | null | undefined;
|
|
14311
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14312
|
-
offlinePaymentTypes?: {
|
|
14313
|
-
name: string;
|
|
14314
|
-
instruction: string;
|
|
14315
|
-
}[] | null | undefined;
|
|
14316
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
14317
|
-
ignoreStock?: boolean | null | undefined;
|
|
14318
|
-
pickupTime?: {
|
|
14319
|
-
day: {
|
|
14320
|
-
max: number;
|
|
14321
|
-
min: number;
|
|
14322
|
-
};
|
|
14323
|
-
} | null | undefined;
|
|
14324
|
-
pickupPointConfig?: {
|
|
14325
|
-
restaurantEnable: boolean;
|
|
14326
|
-
points: {
|
|
14327
|
-
name: string;
|
|
14328
|
-
address: string;
|
|
14329
|
-
coordinates: number[];
|
|
14330
|
-
}[];
|
|
14331
|
-
} | null | undefined;
|
|
14332
|
-
} | null | undefined;
|
|
14333
14308
|
channel?: string | null | undefined;
|
|
14334
14309
|
machineId?: string | null | undefined;
|
|
14335
14310
|
catalogId?: string | null | undefined;
|
|
@@ -14431,6 +14406,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
14431
14406
|
}[];
|
|
14432
14407
|
term: string;
|
|
14433
14408
|
} | null | undefined;
|
|
14409
|
+
pickup?: {
|
|
14410
|
+
catalogId?: string | null | undefined;
|
|
14411
|
+
autoAccept?: boolean | null | undefined;
|
|
14412
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14413
|
+
offlinePaymentTypes?: {
|
|
14414
|
+
name: string;
|
|
14415
|
+
instruction: string;
|
|
14416
|
+
}[] | null | undefined;
|
|
14417
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
14418
|
+
ignoreStock?: boolean | null | undefined;
|
|
14419
|
+
pickupTime?: {
|
|
14420
|
+
day: {
|
|
14421
|
+
max: number;
|
|
14422
|
+
min: number;
|
|
14423
|
+
};
|
|
14424
|
+
} | null | undefined;
|
|
14425
|
+
pickupPointConfig?: {
|
|
14426
|
+
restaurantEnable: boolean;
|
|
14427
|
+
points: {
|
|
14428
|
+
name: string;
|
|
14429
|
+
address: string;
|
|
14430
|
+
coordinates: number[];
|
|
14431
|
+
}[];
|
|
14432
|
+
} | null | undefined;
|
|
14433
|
+
} | null | undefined;
|
|
14434
14434
|
dineIn?: {
|
|
14435
14435
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14436
14436
|
offlinePaymentTypes?: {
|
|
@@ -14713,31 +14713,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
14713
14713
|
restaurant?: string | null | undefined;
|
|
14714
14714
|
appliedAt?: string | null | undefined;
|
|
14715
14715
|
pf_restaurant?: {
|
|
14716
|
-
pickup?: {
|
|
14717
|
-
catalogId?: string | null | undefined;
|
|
14718
|
-
autoAccept?: boolean | null | undefined;
|
|
14719
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14720
|
-
offlinePaymentTypes?: {
|
|
14721
|
-
name: string;
|
|
14722
|
-
instruction: string;
|
|
14723
|
-
}[] | null | undefined;
|
|
14724
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
14725
|
-
ignoreStock?: boolean | null | undefined;
|
|
14726
|
-
pickupTime?: {
|
|
14727
|
-
day: {
|
|
14728
|
-
max: number;
|
|
14729
|
-
min: number;
|
|
14730
|
-
};
|
|
14731
|
-
} | null | undefined;
|
|
14732
|
-
pickupPointConfig?: {
|
|
14733
|
-
restaurantEnable: boolean;
|
|
14734
|
-
points: {
|
|
14735
|
-
name: string;
|
|
14736
|
-
address: string;
|
|
14737
|
-
coordinates: number[];
|
|
14738
|
-
}[];
|
|
14739
|
-
} | null | undefined;
|
|
14740
|
-
} | null | undefined;
|
|
14741
14716
|
channel?: string | null | undefined;
|
|
14742
14717
|
machineId?: string | null | undefined;
|
|
14743
14718
|
catalogId?: string | null | undefined;
|
|
@@ -14839,6 +14814,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
14839
14814
|
}[];
|
|
14840
14815
|
term: string;
|
|
14841
14816
|
} | null | undefined;
|
|
14817
|
+
pickup?: {
|
|
14818
|
+
catalogId?: string | null | undefined;
|
|
14819
|
+
autoAccept?: boolean | null | undefined;
|
|
14820
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14821
|
+
offlinePaymentTypes?: {
|
|
14822
|
+
name: string;
|
|
14823
|
+
instruction: string;
|
|
14824
|
+
}[] | null | undefined;
|
|
14825
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
14826
|
+
ignoreStock?: boolean | null | undefined;
|
|
14827
|
+
pickupTime?: {
|
|
14828
|
+
day: {
|
|
14829
|
+
max: number;
|
|
14830
|
+
min: number;
|
|
14831
|
+
};
|
|
14832
|
+
} | null | undefined;
|
|
14833
|
+
pickupPointConfig?: {
|
|
14834
|
+
restaurantEnable: boolean;
|
|
14835
|
+
points: {
|
|
14836
|
+
name: string;
|
|
14837
|
+
address: string;
|
|
14838
|
+
coordinates: number[];
|
|
14839
|
+
}[];
|
|
14840
|
+
} | null | undefined;
|
|
14841
|
+
} | null | undefined;
|
|
14842
14842
|
dineIn?: {
|
|
14843
14843
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
14844
14844
|
offlinePaymentTypes?: {
|
|
@@ -15213,31 +15213,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
15213
15213
|
menuVersion: string;
|
|
15214
15214
|
} | null | undefined;
|
|
15215
15215
|
pf_targetRestaurant?: {
|
|
15216
|
-
pickup?: {
|
|
15217
|
-
catalogId?: string | null | undefined;
|
|
15218
|
-
autoAccept?: boolean | null | undefined;
|
|
15219
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
15220
|
-
offlinePaymentTypes?: {
|
|
15221
|
-
name: string;
|
|
15222
|
-
instruction: string;
|
|
15223
|
-
}[] | null | undefined;
|
|
15224
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
15225
|
-
ignoreStock?: boolean | null | undefined;
|
|
15226
|
-
pickupTime?: {
|
|
15227
|
-
day: {
|
|
15228
|
-
max: number;
|
|
15229
|
-
min: number;
|
|
15230
|
-
};
|
|
15231
|
-
} | null | undefined;
|
|
15232
|
-
pickupPointConfig?: {
|
|
15233
|
-
restaurantEnable: boolean;
|
|
15234
|
-
points: {
|
|
15235
|
-
name: string;
|
|
15236
|
-
address: string;
|
|
15237
|
-
coordinates: number[];
|
|
15238
|
-
}[];
|
|
15239
|
-
} | null | undefined;
|
|
15240
|
-
} | null | undefined;
|
|
15241
15216
|
channel?: string | null | undefined;
|
|
15242
15217
|
machineId?: string | null | undefined;
|
|
15243
15218
|
catalogId?: string | null | undefined;
|
|
@@ -15339,6 +15314,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
15339
15314
|
}[];
|
|
15340
15315
|
term: string;
|
|
15341
15316
|
} | null | undefined;
|
|
15317
|
+
pickup?: {
|
|
15318
|
+
catalogId?: string | null | undefined;
|
|
15319
|
+
autoAccept?: boolean | null | undefined;
|
|
15320
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
15321
|
+
offlinePaymentTypes?: {
|
|
15322
|
+
name: string;
|
|
15323
|
+
instruction: string;
|
|
15324
|
+
}[] | null | undefined;
|
|
15325
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
15326
|
+
ignoreStock?: boolean | null | undefined;
|
|
15327
|
+
pickupTime?: {
|
|
15328
|
+
day: {
|
|
15329
|
+
max: number;
|
|
15330
|
+
min: number;
|
|
15331
|
+
};
|
|
15332
|
+
} | null | undefined;
|
|
15333
|
+
pickupPointConfig?: {
|
|
15334
|
+
restaurantEnable: boolean;
|
|
15335
|
+
points: {
|
|
15336
|
+
name: string;
|
|
15337
|
+
address: string;
|
|
15338
|
+
coordinates: number[];
|
|
15339
|
+
}[];
|
|
15340
|
+
} | null | undefined;
|
|
15341
|
+
} | null | undefined;
|
|
15342
15342
|
dineIn?: {
|
|
15343
15343
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
15344
15344
|
offlinePaymentTypes?: {
|
|
@@ -15708,31 +15708,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
15708
15708
|
billId?: string | null | undefined;
|
|
15709
15709
|
restaurant?: string | null | undefined;
|
|
15710
15710
|
pf_restaurant?: {
|
|
15711
|
-
pickup?: {
|
|
15712
|
-
catalogId?: string | null | undefined;
|
|
15713
|
-
autoAccept?: boolean | null | undefined;
|
|
15714
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
15715
|
-
offlinePaymentTypes?: {
|
|
15716
|
-
name: string;
|
|
15717
|
-
instruction: string;
|
|
15718
|
-
}[] | null | undefined;
|
|
15719
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
15720
|
-
ignoreStock?: boolean | null | undefined;
|
|
15721
|
-
pickupTime?: {
|
|
15722
|
-
day: {
|
|
15723
|
-
max: number;
|
|
15724
|
-
min: number;
|
|
15725
|
-
};
|
|
15726
|
-
} | null | undefined;
|
|
15727
|
-
pickupPointConfig?: {
|
|
15728
|
-
restaurantEnable: boolean;
|
|
15729
|
-
points: {
|
|
15730
|
-
name: string;
|
|
15731
|
-
address: string;
|
|
15732
|
-
coordinates: number[];
|
|
15733
|
-
}[];
|
|
15734
|
-
} | null | undefined;
|
|
15735
|
-
} | null | undefined;
|
|
15736
15711
|
channel?: string | null | undefined;
|
|
15737
15712
|
machineId?: string | null | undefined;
|
|
15738
15713
|
catalogId?: string | null | undefined;
|
|
@@ -15834,6 +15809,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
15834
15809
|
}[];
|
|
15835
15810
|
term: string;
|
|
15836
15811
|
} | null | undefined;
|
|
15812
|
+
pickup?: {
|
|
15813
|
+
catalogId?: string | null | undefined;
|
|
15814
|
+
autoAccept?: boolean | null | undefined;
|
|
15815
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
15816
|
+
offlinePaymentTypes?: {
|
|
15817
|
+
name: string;
|
|
15818
|
+
instruction: string;
|
|
15819
|
+
}[] | null | undefined;
|
|
15820
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
15821
|
+
ignoreStock?: boolean | null | undefined;
|
|
15822
|
+
pickupTime?: {
|
|
15823
|
+
day: {
|
|
15824
|
+
max: number;
|
|
15825
|
+
min: number;
|
|
15826
|
+
};
|
|
15827
|
+
} | null | undefined;
|
|
15828
|
+
pickupPointConfig?: {
|
|
15829
|
+
restaurantEnable: boolean;
|
|
15830
|
+
points: {
|
|
15831
|
+
name: string;
|
|
15832
|
+
address: string;
|
|
15833
|
+
coordinates: number[];
|
|
15834
|
+
}[];
|
|
15835
|
+
} | null | undefined;
|
|
15836
|
+
} | null | undefined;
|
|
15837
15837
|
dineIn?: {
|
|
15838
15838
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
15839
15839
|
offlinePaymentTypes?: {
|
|
@@ -16116,31 +16116,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16116
16116
|
restaurant?: string | null | undefined;
|
|
16117
16117
|
appliedAt?: string | null | undefined;
|
|
16118
16118
|
pf_restaurant?: {
|
|
16119
|
-
pickup?: {
|
|
16120
|
-
catalogId?: string | null | undefined;
|
|
16121
|
-
autoAccept?: boolean | null | undefined;
|
|
16122
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
16123
|
-
offlinePaymentTypes?: {
|
|
16124
|
-
name: string;
|
|
16125
|
-
instruction: string;
|
|
16126
|
-
}[] | null | undefined;
|
|
16127
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
16128
|
-
ignoreStock?: boolean | null | undefined;
|
|
16129
|
-
pickupTime?: {
|
|
16130
|
-
day: {
|
|
16131
|
-
max: number;
|
|
16132
|
-
min: number;
|
|
16133
|
-
};
|
|
16134
|
-
} | null | undefined;
|
|
16135
|
-
pickupPointConfig?: {
|
|
16136
|
-
restaurantEnable: boolean;
|
|
16137
|
-
points: {
|
|
16138
|
-
name: string;
|
|
16139
|
-
address: string;
|
|
16140
|
-
coordinates: number[];
|
|
16141
|
-
}[];
|
|
16142
|
-
} | null | undefined;
|
|
16143
|
-
} | null | undefined;
|
|
16144
16119
|
channel?: string | null | undefined;
|
|
16145
16120
|
machineId?: string | null | undefined;
|
|
16146
16121
|
catalogId?: string | null | undefined;
|
|
@@ -16242,6 +16217,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16242
16217
|
}[];
|
|
16243
16218
|
term: string;
|
|
16244
16219
|
} | null | undefined;
|
|
16220
|
+
pickup?: {
|
|
16221
|
+
catalogId?: string | null | undefined;
|
|
16222
|
+
autoAccept?: boolean | null | undefined;
|
|
16223
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
16224
|
+
offlinePaymentTypes?: {
|
|
16225
|
+
name: string;
|
|
16226
|
+
instruction: string;
|
|
16227
|
+
}[] | null | undefined;
|
|
16228
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
16229
|
+
ignoreStock?: boolean | null | undefined;
|
|
16230
|
+
pickupTime?: {
|
|
16231
|
+
day: {
|
|
16232
|
+
max: number;
|
|
16233
|
+
min: number;
|
|
16234
|
+
};
|
|
16235
|
+
} | null | undefined;
|
|
16236
|
+
pickupPointConfig?: {
|
|
16237
|
+
restaurantEnable: boolean;
|
|
16238
|
+
points: {
|
|
16239
|
+
name: string;
|
|
16240
|
+
address: string;
|
|
16241
|
+
coordinates: number[];
|
|
16242
|
+
}[];
|
|
16243
|
+
} | null | undefined;
|
|
16244
|
+
} | null | undefined;
|
|
16245
16245
|
dineIn?: {
|
|
16246
16246
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
16247
16247
|
offlinePaymentTypes?: {
|
|
@@ -16616,31 +16616,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16616
16616
|
menuVersion: string;
|
|
16617
16617
|
} | null | undefined;
|
|
16618
16618
|
pf_targetRestaurant?: {
|
|
16619
|
-
pickup?: {
|
|
16620
|
-
catalogId?: string | null | undefined;
|
|
16621
|
-
autoAccept?: boolean | null | undefined;
|
|
16622
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
16623
|
-
offlinePaymentTypes?: {
|
|
16624
|
-
name: string;
|
|
16625
|
-
instruction: string;
|
|
16626
|
-
}[] | null | undefined;
|
|
16627
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
16628
|
-
ignoreStock?: boolean | null | undefined;
|
|
16629
|
-
pickupTime?: {
|
|
16630
|
-
day: {
|
|
16631
|
-
max: number;
|
|
16632
|
-
min: number;
|
|
16633
|
-
};
|
|
16634
|
-
} | null | undefined;
|
|
16635
|
-
pickupPointConfig?: {
|
|
16636
|
-
restaurantEnable: boolean;
|
|
16637
|
-
points: {
|
|
16638
|
-
name: string;
|
|
16639
|
-
address: string;
|
|
16640
|
-
coordinates: number[];
|
|
16641
|
-
}[];
|
|
16642
|
-
} | null | undefined;
|
|
16643
|
-
} | null | undefined;
|
|
16644
16619
|
channel?: string | null | undefined;
|
|
16645
16620
|
machineId?: string | null | undefined;
|
|
16646
16621
|
catalogId?: string | null | undefined;
|
|
@@ -16742,6 +16717,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16742
16717
|
}[];
|
|
16743
16718
|
term: string;
|
|
16744
16719
|
} | null | undefined;
|
|
16720
|
+
pickup?: {
|
|
16721
|
+
catalogId?: string | null | undefined;
|
|
16722
|
+
autoAccept?: boolean | null | undefined;
|
|
16723
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
16724
|
+
offlinePaymentTypes?: {
|
|
16725
|
+
name: string;
|
|
16726
|
+
instruction: string;
|
|
16727
|
+
}[] | null | undefined;
|
|
16728
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
16729
|
+
ignoreStock?: boolean | null | undefined;
|
|
16730
|
+
pickupTime?: {
|
|
16731
|
+
day: {
|
|
16732
|
+
max: number;
|
|
16733
|
+
min: number;
|
|
16734
|
+
};
|
|
16735
|
+
} | null | undefined;
|
|
16736
|
+
pickupPointConfig?: {
|
|
16737
|
+
restaurantEnable: boolean;
|
|
16738
|
+
points: {
|
|
16739
|
+
name: string;
|
|
16740
|
+
address: string;
|
|
16741
|
+
coordinates: number[];
|
|
16742
|
+
}[];
|
|
16743
|
+
} | null | undefined;
|
|
16744
|
+
} | null | undefined;
|
|
16745
16745
|
dineIn?: {
|
|
16746
16746
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
16747
16747
|
offlinePaymentTypes?: {
|
|
@@ -17405,31 +17405,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
17405
17405
|
billId?: string | null | undefined;
|
|
17406
17406
|
restaurant?: string | null | undefined;
|
|
17407
17407
|
pf_restaurant?: {
|
|
17408
|
-
pickup?: {
|
|
17409
|
-
catalogId?: string | null | undefined;
|
|
17410
|
-
autoAccept?: boolean | null | undefined;
|
|
17411
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17412
|
-
offlinePaymentTypes?: {
|
|
17413
|
-
name: string;
|
|
17414
|
-
instruction: string;
|
|
17415
|
-
}[] | null | undefined;
|
|
17416
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17417
|
-
ignoreStock?: boolean | null | undefined;
|
|
17418
|
-
pickupTime?: {
|
|
17419
|
-
day: {
|
|
17420
|
-
max: number;
|
|
17421
|
-
min: number;
|
|
17422
|
-
};
|
|
17423
|
-
} | null | undefined;
|
|
17424
|
-
pickupPointConfig?: {
|
|
17425
|
-
restaurantEnable: boolean;
|
|
17426
|
-
points: {
|
|
17427
|
-
name: string;
|
|
17428
|
-
address: string;
|
|
17429
|
-
coordinates: number[];
|
|
17430
|
-
}[];
|
|
17431
|
-
} | null | undefined;
|
|
17432
|
-
} | null | undefined;
|
|
17433
17408
|
channel?: string | null | undefined;
|
|
17434
17409
|
machineId?: string | null | undefined;
|
|
17435
17410
|
catalogId?: string | null | undefined;
|
|
@@ -17531,6 +17506,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
17531
17506
|
}[];
|
|
17532
17507
|
term: string;
|
|
17533
17508
|
} | null | undefined;
|
|
17509
|
+
pickup?: {
|
|
17510
|
+
catalogId?: string | null | undefined;
|
|
17511
|
+
autoAccept?: boolean | null | undefined;
|
|
17512
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17513
|
+
offlinePaymentTypes?: {
|
|
17514
|
+
name: string;
|
|
17515
|
+
instruction: string;
|
|
17516
|
+
}[] | null | undefined;
|
|
17517
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17518
|
+
ignoreStock?: boolean | null | undefined;
|
|
17519
|
+
pickupTime?: {
|
|
17520
|
+
day: {
|
|
17521
|
+
max: number;
|
|
17522
|
+
min: number;
|
|
17523
|
+
};
|
|
17524
|
+
} | null | undefined;
|
|
17525
|
+
pickupPointConfig?: {
|
|
17526
|
+
restaurantEnable: boolean;
|
|
17527
|
+
points: {
|
|
17528
|
+
name: string;
|
|
17529
|
+
address: string;
|
|
17530
|
+
coordinates: number[];
|
|
17531
|
+
}[];
|
|
17532
|
+
} | null | undefined;
|
|
17533
|
+
} | null | undefined;
|
|
17534
17534
|
dineIn?: {
|
|
17535
17535
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17536
17536
|
offlinePaymentTypes?: {
|
|
@@ -17813,31 +17813,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
17813
17813
|
restaurant?: string | null | undefined;
|
|
17814
17814
|
appliedAt?: string | null | undefined;
|
|
17815
17815
|
pf_restaurant?: {
|
|
17816
|
-
pickup?: {
|
|
17817
|
-
catalogId?: string | null | undefined;
|
|
17818
|
-
autoAccept?: boolean | null | undefined;
|
|
17819
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17820
|
-
offlinePaymentTypes?: {
|
|
17821
|
-
name: string;
|
|
17822
|
-
instruction: string;
|
|
17823
|
-
}[] | null | undefined;
|
|
17824
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17825
|
-
ignoreStock?: boolean | null | undefined;
|
|
17826
|
-
pickupTime?: {
|
|
17827
|
-
day: {
|
|
17828
|
-
max: number;
|
|
17829
|
-
min: number;
|
|
17830
|
-
};
|
|
17831
|
-
} | null | undefined;
|
|
17832
|
-
pickupPointConfig?: {
|
|
17833
|
-
restaurantEnable: boolean;
|
|
17834
|
-
points: {
|
|
17835
|
-
name: string;
|
|
17836
|
-
address: string;
|
|
17837
|
-
coordinates: number[];
|
|
17838
|
-
}[];
|
|
17839
|
-
} | null | undefined;
|
|
17840
|
-
} | null | undefined;
|
|
17841
17816
|
channel?: string | null | undefined;
|
|
17842
17817
|
machineId?: string | null | undefined;
|
|
17843
17818
|
catalogId?: string | null | undefined;
|
|
@@ -17939,6 +17914,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
17939
17914
|
}[];
|
|
17940
17915
|
term: string;
|
|
17941
17916
|
} | null | undefined;
|
|
17917
|
+
pickup?: {
|
|
17918
|
+
catalogId?: string | null | undefined;
|
|
17919
|
+
autoAccept?: boolean | null | undefined;
|
|
17920
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17921
|
+
offlinePaymentTypes?: {
|
|
17922
|
+
name: string;
|
|
17923
|
+
instruction: string;
|
|
17924
|
+
}[] | null | undefined;
|
|
17925
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
17926
|
+
ignoreStock?: boolean | null | undefined;
|
|
17927
|
+
pickupTime?: {
|
|
17928
|
+
day: {
|
|
17929
|
+
max: number;
|
|
17930
|
+
min: number;
|
|
17931
|
+
};
|
|
17932
|
+
} | null | undefined;
|
|
17933
|
+
pickupPointConfig?: {
|
|
17934
|
+
restaurantEnable: boolean;
|
|
17935
|
+
points: {
|
|
17936
|
+
name: string;
|
|
17937
|
+
address: string;
|
|
17938
|
+
coordinates: number[];
|
|
17939
|
+
}[];
|
|
17940
|
+
} | null | undefined;
|
|
17941
|
+
} | null | undefined;
|
|
17942
17942
|
dineIn?: {
|
|
17943
17943
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
17944
17944
|
offlinePaymentTypes?: {
|
|
@@ -18313,31 +18313,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
18313
18313
|
menuVersion: string;
|
|
18314
18314
|
} | null | undefined;
|
|
18315
18315
|
pf_targetRestaurant?: {
|
|
18316
|
-
pickup?: {
|
|
18317
|
-
catalogId?: string | null | undefined;
|
|
18318
|
-
autoAccept?: boolean | null | undefined;
|
|
18319
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
18320
|
-
offlinePaymentTypes?: {
|
|
18321
|
-
name: string;
|
|
18322
|
-
instruction: string;
|
|
18323
|
-
}[] | null | undefined;
|
|
18324
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
18325
|
-
ignoreStock?: boolean | null | undefined;
|
|
18326
|
-
pickupTime?: {
|
|
18327
|
-
day: {
|
|
18328
|
-
max: number;
|
|
18329
|
-
min: number;
|
|
18330
|
-
};
|
|
18331
|
-
} | null | undefined;
|
|
18332
|
-
pickupPointConfig?: {
|
|
18333
|
-
restaurantEnable: boolean;
|
|
18334
|
-
points: {
|
|
18335
|
-
name: string;
|
|
18336
|
-
address: string;
|
|
18337
|
-
coordinates: number[];
|
|
18338
|
-
}[];
|
|
18339
|
-
} | null | undefined;
|
|
18340
|
-
} | null | undefined;
|
|
18341
18316
|
channel?: string | null | undefined;
|
|
18342
18317
|
machineId?: string | null | undefined;
|
|
18343
18318
|
catalogId?: string | null | undefined;
|
|
@@ -18439,6 +18414,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
18439
18414
|
}[];
|
|
18440
18415
|
term: string;
|
|
18441
18416
|
} | null | undefined;
|
|
18417
|
+
pickup?: {
|
|
18418
|
+
catalogId?: string | null | undefined;
|
|
18419
|
+
autoAccept?: boolean | null | undefined;
|
|
18420
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
18421
|
+
offlinePaymentTypes?: {
|
|
18422
|
+
name: string;
|
|
18423
|
+
instruction: string;
|
|
18424
|
+
}[] | null | undefined;
|
|
18425
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
18426
|
+
ignoreStock?: boolean | null | undefined;
|
|
18427
|
+
pickupTime?: {
|
|
18428
|
+
day: {
|
|
18429
|
+
max: number;
|
|
18430
|
+
min: number;
|
|
18431
|
+
};
|
|
18432
|
+
} | null | undefined;
|
|
18433
|
+
pickupPointConfig?: {
|
|
18434
|
+
restaurantEnable: boolean;
|
|
18435
|
+
points: {
|
|
18436
|
+
name: string;
|
|
18437
|
+
address: string;
|
|
18438
|
+
coordinates: number[];
|
|
18439
|
+
}[];
|
|
18440
|
+
} | null | undefined;
|
|
18441
|
+
} | null | undefined;
|
|
18442
18442
|
dineIn?: {
|
|
18443
18443
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
18444
18444
|
offlinePaymentTypes?: {
|
|
@@ -19102,31 +19102,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
19102
19102
|
billId?: string | null | undefined;
|
|
19103
19103
|
restaurant?: string | null | undefined;
|
|
19104
19104
|
pf_restaurant?: {
|
|
19105
|
-
pickup?: {
|
|
19106
|
-
catalogId?: string | null | undefined;
|
|
19107
|
-
autoAccept?: boolean | null | undefined;
|
|
19108
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
19109
|
-
offlinePaymentTypes?: {
|
|
19110
|
-
name: string;
|
|
19111
|
-
instruction: string;
|
|
19112
|
-
}[] | null | undefined;
|
|
19113
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
19114
|
-
ignoreStock?: boolean | null | undefined;
|
|
19115
|
-
pickupTime?: {
|
|
19116
|
-
day: {
|
|
19117
|
-
max: number;
|
|
19118
|
-
min: number;
|
|
19119
|
-
};
|
|
19120
|
-
} | null | undefined;
|
|
19121
|
-
pickupPointConfig?: {
|
|
19122
|
-
restaurantEnable: boolean;
|
|
19123
|
-
points: {
|
|
19124
|
-
name: string;
|
|
19125
|
-
address: string;
|
|
19126
|
-
coordinates: number[];
|
|
19127
|
-
}[];
|
|
19128
|
-
} | null | undefined;
|
|
19129
|
-
} | null | undefined;
|
|
19130
19105
|
channel?: string | null | undefined;
|
|
19131
19106
|
machineId?: string | null | undefined;
|
|
19132
19107
|
catalogId?: string | null | undefined;
|
|
@@ -19228,6 +19203,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
19228
19203
|
}[];
|
|
19229
19204
|
term: string;
|
|
19230
19205
|
} | null | undefined;
|
|
19206
|
+
pickup?: {
|
|
19207
|
+
catalogId?: string | null | undefined;
|
|
19208
|
+
autoAccept?: boolean | null | undefined;
|
|
19209
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
19210
|
+
offlinePaymentTypes?: {
|
|
19211
|
+
name: string;
|
|
19212
|
+
instruction: string;
|
|
19213
|
+
}[] | null | undefined;
|
|
19214
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
19215
|
+
ignoreStock?: boolean | null | undefined;
|
|
19216
|
+
pickupTime?: {
|
|
19217
|
+
day: {
|
|
19218
|
+
max: number;
|
|
19219
|
+
min: number;
|
|
19220
|
+
};
|
|
19221
|
+
} | null | undefined;
|
|
19222
|
+
pickupPointConfig?: {
|
|
19223
|
+
restaurantEnable: boolean;
|
|
19224
|
+
points: {
|
|
19225
|
+
name: string;
|
|
19226
|
+
address: string;
|
|
19227
|
+
coordinates: number[];
|
|
19228
|
+
}[];
|
|
19229
|
+
} | null | undefined;
|
|
19230
|
+
} | null | undefined;
|
|
19231
19231
|
dineIn?: {
|
|
19232
19232
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
19233
19233
|
offlinePaymentTypes?: {
|
|
@@ -19510,31 +19510,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
19510
19510
|
restaurant?: string | null | undefined;
|
|
19511
19511
|
appliedAt?: string | null | undefined;
|
|
19512
19512
|
pf_restaurant?: {
|
|
19513
|
-
pickup?: {
|
|
19514
|
-
catalogId?: string | null | undefined;
|
|
19515
|
-
autoAccept?: boolean | null | undefined;
|
|
19516
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
19517
|
-
offlinePaymentTypes?: {
|
|
19518
|
-
name: string;
|
|
19519
|
-
instruction: string;
|
|
19520
|
-
}[] | null | undefined;
|
|
19521
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
19522
|
-
ignoreStock?: boolean | null | undefined;
|
|
19523
|
-
pickupTime?: {
|
|
19524
|
-
day: {
|
|
19525
|
-
max: number;
|
|
19526
|
-
min: number;
|
|
19527
|
-
};
|
|
19528
|
-
} | null | undefined;
|
|
19529
|
-
pickupPointConfig?: {
|
|
19530
|
-
restaurantEnable: boolean;
|
|
19531
|
-
points: {
|
|
19532
|
-
name: string;
|
|
19533
|
-
address: string;
|
|
19534
|
-
coordinates: number[];
|
|
19535
|
-
}[];
|
|
19536
|
-
} | null | undefined;
|
|
19537
|
-
} | null | undefined;
|
|
19538
19513
|
channel?: string | null | undefined;
|
|
19539
19514
|
machineId?: string | null | undefined;
|
|
19540
19515
|
catalogId?: string | null | undefined;
|
|
@@ -19636,6 +19611,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
19636
19611
|
}[];
|
|
19637
19612
|
term: string;
|
|
19638
19613
|
} | null | undefined;
|
|
19614
|
+
pickup?: {
|
|
19615
|
+
catalogId?: string | null | undefined;
|
|
19616
|
+
autoAccept?: boolean | null | undefined;
|
|
19617
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
19618
|
+
offlinePaymentTypes?: {
|
|
19619
|
+
name: string;
|
|
19620
|
+
instruction: string;
|
|
19621
|
+
}[] | null | undefined;
|
|
19622
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
19623
|
+
ignoreStock?: boolean | null | undefined;
|
|
19624
|
+
pickupTime?: {
|
|
19625
|
+
day: {
|
|
19626
|
+
max: number;
|
|
19627
|
+
min: number;
|
|
19628
|
+
};
|
|
19629
|
+
} | null | undefined;
|
|
19630
|
+
pickupPointConfig?: {
|
|
19631
|
+
restaurantEnable: boolean;
|
|
19632
|
+
points: {
|
|
19633
|
+
name: string;
|
|
19634
|
+
address: string;
|
|
19635
|
+
coordinates: number[];
|
|
19636
|
+
}[];
|
|
19637
|
+
} | null | undefined;
|
|
19638
|
+
} | null | undefined;
|
|
19639
19639
|
dineIn?: {
|
|
19640
19640
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
19641
19641
|
offlinePaymentTypes?: {
|
|
@@ -20010,31 +20010,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
20010
20010
|
menuVersion: string;
|
|
20011
20011
|
} | null | undefined;
|
|
20012
20012
|
pf_targetRestaurant?: {
|
|
20013
|
-
pickup?: {
|
|
20014
|
-
catalogId?: string | null | undefined;
|
|
20015
|
-
autoAccept?: boolean | null | undefined;
|
|
20016
|
-
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
20017
|
-
offlinePaymentTypes?: {
|
|
20018
|
-
name: string;
|
|
20019
|
-
instruction: string;
|
|
20020
|
-
}[] | null | undefined;
|
|
20021
|
-
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
20022
|
-
ignoreStock?: boolean | null | undefined;
|
|
20023
|
-
pickupTime?: {
|
|
20024
|
-
day: {
|
|
20025
|
-
max: number;
|
|
20026
|
-
min: number;
|
|
20027
|
-
};
|
|
20028
|
-
} | null | undefined;
|
|
20029
|
-
pickupPointConfig?: {
|
|
20030
|
-
restaurantEnable: boolean;
|
|
20031
|
-
points: {
|
|
20032
|
-
name: string;
|
|
20033
|
-
address: string;
|
|
20034
|
-
coordinates: number[];
|
|
20035
|
-
}[];
|
|
20036
|
-
} | null | undefined;
|
|
20037
|
-
} | null | undefined;
|
|
20038
20013
|
channel?: string | null | undefined;
|
|
20039
20014
|
machineId?: string | null | undefined;
|
|
20040
20015
|
catalogId?: string | null | undefined;
|
|
@@ -20136,6 +20111,31 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
20136
20111
|
}[];
|
|
20137
20112
|
term: string;
|
|
20138
20113
|
} | null | undefined;
|
|
20114
|
+
pickup?: {
|
|
20115
|
+
catalogId?: string | null | undefined;
|
|
20116
|
+
autoAccept?: boolean | null | undefined;
|
|
20117
|
+
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
20118
|
+
offlinePaymentTypes?: {
|
|
20119
|
+
name: string;
|
|
20120
|
+
instruction: string;
|
|
20121
|
+
}[] | null | undefined;
|
|
20122
|
+
autoAcceptPaidOnly?: boolean | null | undefined;
|
|
20123
|
+
ignoreStock?: boolean | null | undefined;
|
|
20124
|
+
pickupTime?: {
|
|
20125
|
+
day: {
|
|
20126
|
+
max: number;
|
|
20127
|
+
min: number;
|
|
20128
|
+
};
|
|
20129
|
+
} | null | undefined;
|
|
20130
|
+
pickupPointConfig?: {
|
|
20131
|
+
restaurantEnable: boolean;
|
|
20132
|
+
points: {
|
|
20133
|
+
name: string;
|
|
20134
|
+
address: string;
|
|
20135
|
+
coordinates: number[];
|
|
20136
|
+
}[];
|
|
20137
|
+
} | null | undefined;
|
|
20138
|
+
} | null | undefined;
|
|
20139
20139
|
dineIn?: {
|
|
20140
20140
|
paymentTypes?: ("cash" | "ePayment" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
20141
20141
|
offlinePaymentTypes?: {
|