@feedmepos/mf-order-setting 0.0.37 → 0.0.43
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-D9PQ22G6.js → KioskDevicesView-KBpXQJmy.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-BuwHk_0a.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-taf41a-7.js} +2 -2
- package/dist/KioskSettingView-DG12ZvfT.js +528 -0
- package/dist/{KioskView-C6s4u6vt.js → KioskView-KNiT-upH.js} +125 -119
- package/dist/OrderSettingsView-CoAGawQi.js +75548 -0
- package/dist/{app-86WCOyBO.js → app-Db1lhCv7.js} +26 -20
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-BiuO1l2_.js → dayjs.min-D9bsUd57.js} +232 -242
- package/dist/frontend/mf-order/src/api/menu/index.d.ts +4 -0
- package/dist/frontend/mf-order/src/app.d.ts +9 -3
- package/dist/frontend/mf-order/src/main.d.ts +9 -3
- package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +13 -4
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +3 -3
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +1 -1
- package/dist/frontend/mf-order/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue.d.ts +5 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-DZKSDqn_.js → index-D_Tmm1qL.js} +2 -2
- package/dist/menu.dto-BY9dVf93.js +127239 -0
- package/dist/package/entity/delivery/linked-delivery.do.d.ts +9 -0
- package/dist/package/entity/food-court/order.dto.d.ts +1952 -1952
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +23 -23
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +45 -45
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +34 -34
- package/dist/package/entity/order/dine-in/dine-in.do.d.ts +11 -11
- package/dist/package/entity/order/dine-in/dine-in.dto.d.ts +4 -4
- package/dist/package/entity/order/menu/menu.dto.d.ts +4 -4
- package/dist/package/entity/order/order.do.d.ts +8 -8
- package/dist/package/entity/order/order.dto.d.ts +3322 -3322
- package/dist/package/entity/order/order.enum.d.ts +1 -1
- package/dist/package/entity/order/payment/payment.dto.d.ts +1702 -1702
- package/dist/package/entity/order-setting/order-setting.do.d.ts +5 -5
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +10 -10
- package/dist/package/entity/order-setting/sms/sms.do.d.ts +3 -3
- package/dist/package/entity/order-setting/sms/sms.dto.d.ts +3 -3
- package/dist/package/entity/payment/payment.dto.d.ts +3 -3
- package/dist/package/entity/queue/queue.dto.d.ts +872 -872
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +282 -3
- package/package.json +4 -4
- package/src/api/menu/index.ts +4 -1
- package/src/locales/en-US.json +3 -1
- package/src/locales/th-TH.json +3 -1
- package/src/locales/zh-CN.json +3 -1
- package/src/stores/menu/menu.ts +33 -14
- package/src/views/kiosk/KioskView.vue +16 -4
- package/src/views/kiosk/settings/KioskSettingView.vue +193 -122
- package/src/views/order-settings/OrderSettingsView.vue +40 -13
- package/src/views/order-settings/delivery/DeliverySetting.vue +12 -17
- package/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue +21 -2
- package/src/views/order-settings/delivery/delivery.ts +9 -5
- package/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue +3 -17
- package/src/views/order-settings/delivery/integrated-delivery/IntegratedDelivery.vue +0 -1
- package/dist/KioskSettingView-C98iSa7q.js +0 -843
- package/dist/OrderSettingsView-DFB_C-VO.js +0 -50757
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskDineInSection.vue.d.ts +0 -10
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue.d.ts +0 -9
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskMenuItemSection.vue.d.ts +0 -9
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskTakeawaySection.vue.d.ts +0 -10
- package/dist/menu.dto-CT1XwUKO.js +0 -127978
- package/src/views/kiosk/settings/KioskDineInSection.vue +0 -68
- package/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue +0 -33
- package/src/views/kiosk/settings/KioskMenuItemSection.vue +0 -27
- package/src/views/kiosk/settings/KioskTakeawaySection.vue +0 -66
|
@@ -2103,7 +2103,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
2103
2103
|
type: z.ZodLiteral<"DINE_IN">;
|
|
2104
2104
|
option: z.ZodObject<{
|
|
2105
2105
|
platform: z.ZodString;
|
|
2106
|
-
type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]
|
|
2106
|
+
type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
|
|
2107
2107
|
customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2108
2108
|
id: z.ZodString;
|
|
2109
2109
|
name: z.ZodString;
|
|
@@ -2129,7 +2129,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
2129
2129
|
} | null | undefined;
|
|
2130
2130
|
createdAt?: string | null | undefined;
|
|
2131
2131
|
platform: string;
|
|
2132
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
2132
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
2133
2133
|
orderIds: string[];
|
|
2134
2134
|
}, {
|
|
2135
2135
|
reference?: string | null | undefined;
|
|
@@ -2140,7 +2140,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
2140
2140
|
} | null | undefined;
|
|
2141
2141
|
createdAt?: string | null | undefined;
|
|
2142
2142
|
platform: string;
|
|
2143
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
2143
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
2144
2144
|
orderIds: string[];
|
|
2145
2145
|
}>;
|
|
2146
2146
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2153,7 +2153,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
2153
2153
|
} | null | undefined;
|
|
2154
2154
|
createdAt?: string | null | undefined;
|
|
2155
2155
|
platform: string;
|
|
2156
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
2156
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
2157
2157
|
orderIds: string[];
|
|
2158
2158
|
};
|
|
2159
2159
|
type: "DINE_IN";
|
|
@@ -2167,7 +2167,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
2167
2167
|
} | null | undefined;
|
|
2168
2168
|
createdAt?: string | null | undefined;
|
|
2169
2169
|
platform: string;
|
|
2170
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
2170
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
2171
2171
|
orderIds: string[];
|
|
2172
2172
|
};
|
|
2173
2173
|
type: "DINE_IN";
|
|
@@ -3063,11 +3063,11 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
3063
3063
|
transactionId: z.ZodString;
|
|
3064
3064
|
}, "strip", z.ZodTypeAny, {
|
|
3065
3065
|
response?: Record<string, any> | null | undefined;
|
|
3066
|
-
key: "FEEDME" | "
|
|
3066
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
3067
3067
|
transactionId: string;
|
|
3068
3068
|
}, {
|
|
3069
3069
|
response?: Record<string, any> | null | undefined;
|
|
3070
|
-
key: "FEEDME" | "
|
|
3070
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
3071
3071
|
transactionId: string;
|
|
3072
3072
|
}>>>;
|
|
3073
3073
|
reference: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3167,7 +3167,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
3167
3167
|
} | null | undefined;
|
|
3168
3168
|
paymentGateway?: {
|
|
3169
3169
|
response?: Record<string, any> | null | undefined;
|
|
3170
|
-
key: "FEEDME" | "
|
|
3170
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
3171
3171
|
transactionId: string;
|
|
3172
3172
|
} | null | undefined;
|
|
3173
3173
|
reference?: string | null | undefined;
|
|
@@ -3212,7 +3212,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
3212
3212
|
} | null | undefined;
|
|
3213
3213
|
paymentGateway?: {
|
|
3214
3214
|
response?: Record<string, any> | null | undefined;
|
|
3215
|
-
key: "FEEDME" | "
|
|
3215
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
3216
3216
|
transactionId: string;
|
|
3217
3217
|
} | null | undefined;
|
|
3218
3218
|
reference?: string | null | undefined;
|
|
@@ -3628,7 +3628,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
3628
3628
|
} | null | undefined;
|
|
3629
3629
|
createdAt?: string | null | undefined;
|
|
3630
3630
|
platform: string;
|
|
3631
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
3631
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
3632
3632
|
orderIds: string[];
|
|
3633
3633
|
};
|
|
3634
3634
|
type: "DINE_IN";
|
|
@@ -3778,7 +3778,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
3778
3778
|
} | null | undefined;
|
|
3779
3779
|
paymentGateway?: {
|
|
3780
3780
|
response?: Record<string, any> | null | undefined;
|
|
3781
|
-
key: "FEEDME" | "
|
|
3781
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
3782
3782
|
transactionId: string;
|
|
3783
3783
|
} | null | undefined;
|
|
3784
3784
|
reference?: string | null | undefined;
|
|
@@ -4183,7 +4183,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
4183
4183
|
} | null | undefined;
|
|
4184
4184
|
createdAt?: string | null | undefined;
|
|
4185
4185
|
platform: string;
|
|
4186
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
4186
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
4187
4187
|
orderIds: string[];
|
|
4188
4188
|
};
|
|
4189
4189
|
type: "DINE_IN";
|
|
@@ -4333,7 +4333,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
4333
4333
|
} | null | undefined;
|
|
4334
4334
|
paymentGateway?: {
|
|
4335
4335
|
response?: Record<string, any> | null | undefined;
|
|
4336
|
-
key: "FEEDME" | "
|
|
4336
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
4337
4337
|
transactionId: string;
|
|
4338
4338
|
} | null | undefined;
|
|
4339
4339
|
reference?: string | null | undefined;
|
|
@@ -4779,7 +4779,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
4779
4779
|
} | null | undefined;
|
|
4780
4780
|
createdAt?: string | null | undefined;
|
|
4781
4781
|
platform: string;
|
|
4782
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
4782
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
4783
4783
|
orderIds: string[];
|
|
4784
4784
|
};
|
|
4785
4785
|
type: "DINE_IN";
|
|
@@ -4929,7 +4929,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
4929
4929
|
} | null | undefined;
|
|
4930
4930
|
paymentGateway?: {
|
|
4931
4931
|
response?: Record<string, any> | null | undefined;
|
|
4932
|
-
key: "FEEDME" | "
|
|
4932
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
4933
4933
|
transactionId: string;
|
|
4934
4934
|
} | null | undefined;
|
|
4935
4935
|
reference?: string | null | undefined;
|
|
@@ -5349,7 +5349,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
5349
5349
|
} | null | undefined;
|
|
5350
5350
|
createdAt?: string | null | undefined;
|
|
5351
5351
|
platform: string;
|
|
5352
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
5352
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
5353
5353
|
orderIds: string[];
|
|
5354
5354
|
};
|
|
5355
5355
|
type: "DINE_IN";
|
|
@@ -5499,7 +5499,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
5499
5499
|
} | null | undefined;
|
|
5500
5500
|
paymentGateway?: {
|
|
5501
5501
|
response?: Record<string, any> | null | undefined;
|
|
5502
|
-
key: "FEEDME" | "
|
|
5502
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
5503
5503
|
transactionId: string;
|
|
5504
5504
|
} | null | undefined;
|
|
5505
5505
|
reference?: string | null | undefined;
|
|
@@ -7693,7 +7693,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
7693
7693
|
type: z.ZodLiteral<"DINE_IN">;
|
|
7694
7694
|
option: z.ZodObject<{
|
|
7695
7695
|
platform: z.ZodString;
|
|
7696
|
-
type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]
|
|
7696
|
+
type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
|
|
7697
7697
|
customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
7698
7698
|
id: z.ZodString;
|
|
7699
7699
|
name: z.ZodString;
|
|
@@ -7719,7 +7719,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
7719
7719
|
} | null | undefined;
|
|
7720
7720
|
createdAt?: string | null | undefined;
|
|
7721
7721
|
platform: string;
|
|
7722
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
7722
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
7723
7723
|
orderIds: string[];
|
|
7724
7724
|
}, {
|
|
7725
7725
|
reference?: string | null | undefined;
|
|
@@ -7730,7 +7730,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
7730
7730
|
} | null | undefined;
|
|
7731
7731
|
createdAt?: string | null | undefined;
|
|
7732
7732
|
platform: string;
|
|
7733
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
7733
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
7734
7734
|
orderIds: string[];
|
|
7735
7735
|
}>;
|
|
7736
7736
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7743,7 +7743,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
7743
7743
|
} | null | undefined;
|
|
7744
7744
|
createdAt?: string | null | undefined;
|
|
7745
7745
|
platform: string;
|
|
7746
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
7746
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
7747
7747
|
orderIds: string[];
|
|
7748
7748
|
};
|
|
7749
7749
|
type: "DINE_IN";
|
|
@@ -7757,7 +7757,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
7757
7757
|
} | null | undefined;
|
|
7758
7758
|
createdAt?: string | null | undefined;
|
|
7759
7759
|
platform: string;
|
|
7760
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
7760
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
7761
7761
|
orderIds: string[];
|
|
7762
7762
|
};
|
|
7763
7763
|
type: "DINE_IN";
|
|
@@ -8653,11 +8653,11 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
8653
8653
|
transactionId: z.ZodString;
|
|
8654
8654
|
}, "strip", z.ZodTypeAny, {
|
|
8655
8655
|
response?: Record<string, any> | null | undefined;
|
|
8656
|
-
key: "FEEDME" | "
|
|
8656
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
8657
8657
|
transactionId: string;
|
|
8658
8658
|
}, {
|
|
8659
8659
|
response?: Record<string, any> | null | undefined;
|
|
8660
|
-
key: "FEEDME" | "
|
|
8660
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
8661
8661
|
transactionId: string;
|
|
8662
8662
|
}>>>;
|
|
8663
8663
|
reference: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -8757,7 +8757,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
8757
8757
|
} | null | undefined;
|
|
8758
8758
|
paymentGateway?: {
|
|
8759
8759
|
response?: Record<string, any> | null | undefined;
|
|
8760
|
-
key: "FEEDME" | "
|
|
8760
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
8761
8761
|
transactionId: string;
|
|
8762
8762
|
} | null | undefined;
|
|
8763
8763
|
reference?: string | null | undefined;
|
|
@@ -8802,7 +8802,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
8802
8802
|
} | null | undefined;
|
|
8803
8803
|
paymentGateway?: {
|
|
8804
8804
|
response?: Record<string, any> | null | undefined;
|
|
8805
|
-
key: "FEEDME" | "
|
|
8805
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
8806
8806
|
transactionId: string;
|
|
8807
8807
|
} | null | undefined;
|
|
8808
8808
|
reference?: string | null | undefined;
|
|
@@ -9218,7 +9218,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
9218
9218
|
} | null | undefined;
|
|
9219
9219
|
createdAt?: string | null | undefined;
|
|
9220
9220
|
platform: string;
|
|
9221
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
9221
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
9222
9222
|
orderIds: string[];
|
|
9223
9223
|
};
|
|
9224
9224
|
type: "DINE_IN";
|
|
@@ -9368,7 +9368,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
9368
9368
|
} | null | undefined;
|
|
9369
9369
|
paymentGateway?: {
|
|
9370
9370
|
response?: Record<string, any> | null | undefined;
|
|
9371
|
-
key: "FEEDME" | "
|
|
9371
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
9372
9372
|
transactionId: string;
|
|
9373
9373
|
} | null | undefined;
|
|
9374
9374
|
reference?: string | null | undefined;
|
|
@@ -9773,7 +9773,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
9773
9773
|
} | null | undefined;
|
|
9774
9774
|
createdAt?: string | null | undefined;
|
|
9775
9775
|
platform: string;
|
|
9776
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
9776
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
9777
9777
|
orderIds: string[];
|
|
9778
9778
|
};
|
|
9779
9779
|
type: "DINE_IN";
|
|
@@ -9923,7 +9923,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
9923
9923
|
} | null | undefined;
|
|
9924
9924
|
paymentGateway?: {
|
|
9925
9925
|
response?: Record<string, any> | null | undefined;
|
|
9926
|
-
key: "FEEDME" | "
|
|
9926
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
9927
9927
|
transactionId: string;
|
|
9928
9928
|
} | null | undefined;
|
|
9929
9929
|
reference?: string | null | undefined;
|
|
@@ -10333,7 +10333,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
10333
10333
|
} | null | undefined;
|
|
10334
10334
|
createdAt?: string | null | undefined;
|
|
10335
10335
|
platform: string;
|
|
10336
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
10336
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
10337
10337
|
orderIds: string[];
|
|
10338
10338
|
};
|
|
10339
10339
|
type: "DINE_IN";
|
|
@@ -10483,7 +10483,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
10483
10483
|
} | null | undefined;
|
|
10484
10484
|
paymentGateway?: {
|
|
10485
10485
|
response?: Record<string, any> | null | undefined;
|
|
10486
|
-
key: "FEEDME" | "
|
|
10486
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
10487
10487
|
transactionId: string;
|
|
10488
10488
|
} | null | undefined;
|
|
10489
10489
|
reference?: string | null | undefined;
|
|
@@ -10904,7 +10904,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
10904
10904
|
} | null | undefined;
|
|
10905
10905
|
createdAt?: string | null | undefined;
|
|
10906
10906
|
platform: string;
|
|
10907
|
-
type: "QUEUE" | "RESERVATION" | "QR";
|
|
10907
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
|
|
10908
10908
|
orderIds: string[];
|
|
10909
10909
|
};
|
|
10910
10910
|
type: "DINE_IN";
|
|
@@ -11054,7 +11054,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
11054
11054
|
} | null | undefined;
|
|
11055
11055
|
paymentGateway?: {
|
|
11056
11056
|
response?: Record<string, any> | null | undefined;
|
|
11057
|
-
key: "FEEDME" | "
|
|
11057
|
+
key: "FEEDME" | "FEEDME_TERMINAL" | "E_GHL" | "MACAU_PASS" | "REVENUE_MONSTER" | "RAZER_MERCHANT_SERVICE" | "NETS" | "FEEDME_MEMBER_CREDIT" | "FEEDME_CARD";
|
|
11058
11058
|
transactionId: string;
|
|
11059
11059
|
} | null | undefined;
|
|
11060
11060
|
reference?: string | null | undefined;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const FdoDineInBaseSubOption: z.ZodObject<{
|
|
3
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
3
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
4
4
|
}, "strip", z.ZodTypeAny, {
|
|
5
|
-
type: "QUEUE" | "RESERVATION" | "QR" | "TAKEAWAY";
|
|
5
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "TAKEAWAY" | "KIOSK" | "COUNTER";
|
|
6
6
|
}, {
|
|
7
|
-
type: "QUEUE" | "RESERVATION" | "QR" | "TAKEAWAY";
|
|
7
|
+
type: "QUEUE" | "RESERVATION" | "QR" | "TAKEAWAY" | "KIOSK" | "COUNTER";
|
|
8
8
|
}>;
|
|
9
9
|
export declare const FdoDineInQROption: z.ZodObject<z.extendShape<{
|
|
10
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
10
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
11
11
|
}, {
|
|
12
12
|
type: z.ZodLiteral<"QR">;
|
|
13
13
|
session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -22,7 +22,7 @@ export declare const FdoDineInQROption: z.ZodObject<z.extendShape<{
|
|
|
22
22
|
type: "QR";
|
|
23
23
|
}>;
|
|
24
24
|
export declare const FdoDineInQueueOption: z.ZodObject<z.extendShape<{
|
|
25
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
25
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
26
26
|
}, {
|
|
27
27
|
type: z.ZodLiteral<"QUEUE">;
|
|
28
28
|
queueId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -37,7 +37,7 @@ export declare const FdoDineInQueueOption: z.ZodObject<z.extendShape<{
|
|
|
37
37
|
queueId: string;
|
|
38
38
|
}>;
|
|
39
39
|
export declare const FdoDineInReservationOption: z.ZodObject<z.extendShape<{
|
|
40
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
40
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
41
41
|
}, {
|
|
42
42
|
type: z.ZodLiteral<"RESERVATION">;
|
|
43
43
|
reservationId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -112,7 +112,7 @@ export declare const FdoDineInReservationOption: z.ZodObject<z.extendShape<{
|
|
|
112
112
|
reservationId: string;
|
|
113
113
|
}>;
|
|
114
114
|
export declare const FdoDineInTakeawayOption: z.ZodObject<z.extendShape<{
|
|
115
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
115
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
116
116
|
}, {
|
|
117
117
|
type: z.ZodLiteral<"TAKEAWAY">;
|
|
118
118
|
slot: z.ZodString;
|
|
@@ -127,7 +127,7 @@ export declare const FdoDineInTakeawayOption: z.ZodObject<z.extendShape<{
|
|
|
127
127
|
type: "TAKEAWAY";
|
|
128
128
|
}>;
|
|
129
129
|
export declare const FdoDineInSubOption: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
130
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
130
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
131
131
|
}, {
|
|
132
132
|
type: z.ZodLiteral<"QR">;
|
|
133
133
|
session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -141,7 +141,7 @@ export declare const FdoDineInSubOption: z.ZodDiscriminatedUnion<"type", z.Primi
|
|
|
141
141
|
slot: string;
|
|
142
142
|
type: "QR";
|
|
143
143
|
}> | z.ZodObject<z.extendShape<{
|
|
144
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
144
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
145
145
|
}, {
|
|
146
146
|
type: z.ZodLiteral<"QUEUE">;
|
|
147
147
|
queueId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -155,7 +155,7 @@ export declare const FdoDineInSubOption: z.ZodDiscriminatedUnion<"type", z.Primi
|
|
|
155
155
|
type: "QUEUE";
|
|
156
156
|
queueId: string;
|
|
157
157
|
}> | z.ZodObject<z.extendShape<{
|
|
158
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
158
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
159
159
|
}, {
|
|
160
160
|
type: z.ZodLiteral<"RESERVATION">;
|
|
161
161
|
reservationId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -229,7 +229,7 @@ export declare const FdoDineInSubOption: z.ZodDiscriminatedUnion<"type", z.Primi
|
|
|
229
229
|
type: "RESERVATION";
|
|
230
230
|
reservationId: string;
|
|
231
231
|
}> | z.ZodObject<z.extendShape<{
|
|
232
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
232
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
233
233
|
}, {
|
|
234
234
|
type: z.ZodLiteral<"TAKEAWAY">;
|
|
235
235
|
slot: z.ZodString;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const OrderDineInSubOptionDto: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
3
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
3
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
4
4
|
}, {
|
|
5
5
|
type: z.ZodLiteral<"QR">;
|
|
6
6
|
session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -14,7 +14,7 @@ export declare const OrderDineInSubOptionDto: z.ZodDiscriminatedUnion<"type", z.
|
|
|
14
14
|
slot: string;
|
|
15
15
|
type: "QR";
|
|
16
16
|
}> | z.ZodObject<z.extendShape<{
|
|
17
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
17
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
18
18
|
}, {
|
|
19
19
|
type: z.ZodLiteral<"QUEUE">;
|
|
20
20
|
queueId: z.ZodString;
|
|
@@ -28,7 +28,7 @@ export declare const OrderDineInSubOptionDto: z.ZodDiscriminatedUnion<"type", z.
|
|
|
28
28
|
type: "QUEUE";
|
|
29
29
|
queueId: string;
|
|
30
30
|
}> | z.ZodObject<z.extendShape<{
|
|
31
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
31
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
32
32
|
}, {
|
|
33
33
|
type: z.ZodLiteral<"RESERVATION">;
|
|
34
34
|
reservationId: z.ZodString;
|
|
@@ -42,7 +42,7 @@ export declare const OrderDineInSubOptionDto: z.ZodDiscriminatedUnion<"type", z.
|
|
|
42
42
|
type: "RESERVATION";
|
|
43
43
|
reservationId: string;
|
|
44
44
|
}> | z.ZodObject<z.extendShape<{
|
|
45
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
45
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
46
46
|
}, {
|
|
47
47
|
type: z.ZodLiteral<"TAKEAWAY">;
|
|
48
48
|
slot: z.ZodString;
|
|
@@ -8,7 +8,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
8
8
|
type: z.ZodLiteral<"DINE_IN">;
|
|
9
9
|
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
10
10
|
sub: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
11
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
11
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
12
12
|
}, {
|
|
13
13
|
type: z.ZodLiteral<"QR">;
|
|
14
14
|
session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -22,7 +22,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
22
22
|
slot: string;
|
|
23
23
|
type: "QR";
|
|
24
24
|
}> | z.ZodObject<z.extendShape<{
|
|
25
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
25
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
26
26
|
}, {
|
|
27
27
|
type: z.ZodLiteral<"QUEUE">;
|
|
28
28
|
queueId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -36,7 +36,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
36
36
|
type: "QUEUE";
|
|
37
37
|
queueId: string;
|
|
38
38
|
}> | z.ZodObject<z.extendShape<{
|
|
39
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
39
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
40
40
|
}, {
|
|
41
41
|
type: z.ZodLiteral<"RESERVATION">;
|
|
42
42
|
reservationId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -110,7 +110,7 @@ export declare const FdtoOrderReadMenu: z.ZodObject<{
|
|
|
110
110
|
type: "RESERVATION";
|
|
111
111
|
reservationId: string;
|
|
112
112
|
}> | z.ZodObject<z.extendShape<{
|
|
113
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
113
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
114
114
|
}, {
|
|
115
115
|
type: z.ZodLiteral<"TAKEAWAY">;
|
|
116
116
|
slot: z.ZodString;
|
|
@@ -1039,7 +1039,7 @@ export declare const FdoDineInOption: z.ZodObject<z.extendShape<{
|
|
|
1039
1039
|
type: z.ZodLiteral<"DINE_IN">;
|
|
1040
1040
|
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1041
1041
|
sub: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
1042
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
1042
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
1043
1043
|
}, {
|
|
1044
1044
|
type: z.ZodLiteral<"QR">;
|
|
1045
1045
|
session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1053,7 +1053,7 @@ export declare const FdoDineInOption: z.ZodObject<z.extendShape<{
|
|
|
1053
1053
|
slot: string;
|
|
1054
1054
|
type: "QR";
|
|
1055
1055
|
}> | z.ZodObject<z.extendShape<{
|
|
1056
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
1056
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
1057
1057
|
}, {
|
|
1058
1058
|
type: z.ZodLiteral<"QUEUE">;
|
|
1059
1059
|
queueId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1067,7 +1067,7 @@ export declare const FdoDineInOption: z.ZodObject<z.extendShape<{
|
|
|
1067
1067
|
type: "QUEUE";
|
|
1068
1068
|
queueId: string;
|
|
1069
1069
|
}> | z.ZodObject<z.extendShape<{
|
|
1070
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
1070
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
1071
1071
|
}, {
|
|
1072
1072
|
type: z.ZodLiteral<"RESERVATION">;
|
|
1073
1073
|
reservationId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1141,7 +1141,7 @@ export declare const FdoDineInOption: z.ZodObject<z.extendShape<{
|
|
|
1141
1141
|
type: "RESERVATION";
|
|
1142
1142
|
reservationId: string;
|
|
1143
1143
|
}> | z.ZodObject<z.extendShape<{
|
|
1144
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
1144
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
1145
1145
|
}, {
|
|
1146
1146
|
type: z.ZodLiteral<"TAKEAWAY">;
|
|
1147
1147
|
slot: z.ZodString;
|
|
@@ -2548,7 +2548,7 @@ export declare const FdoOrderOption: z.ZodDiscriminatedUnion<"type", z.Primitive
|
|
|
2548
2548
|
type: z.ZodLiteral<"DINE_IN">;
|
|
2549
2549
|
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2550
2550
|
sub: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
2551
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
2551
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
2552
2552
|
}, {
|
|
2553
2553
|
type: z.ZodLiteral<"QR">;
|
|
2554
2554
|
session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2562,7 +2562,7 @@ export declare const FdoOrderOption: z.ZodDiscriminatedUnion<"type", z.Primitive
|
|
|
2562
2562
|
slot: string;
|
|
2563
2563
|
type: "QR";
|
|
2564
2564
|
}> | z.ZodObject<z.extendShape<{
|
|
2565
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
2565
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
2566
2566
|
}, {
|
|
2567
2567
|
type: z.ZodLiteral<"QUEUE">;
|
|
2568
2568
|
queueId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2576,7 +2576,7 @@ export declare const FdoOrderOption: z.ZodDiscriminatedUnion<"type", z.Primitive
|
|
|
2576
2576
|
type: "QUEUE";
|
|
2577
2577
|
queueId: string;
|
|
2578
2578
|
}> | z.ZodObject<z.extendShape<{
|
|
2579
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
2579
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
2580
2580
|
}, {
|
|
2581
2581
|
type: z.ZodLiteral<"RESERVATION">;
|
|
2582
2582
|
reservationId: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2650,7 +2650,7 @@ export declare const FdoOrderOption: z.ZodDiscriminatedUnion<"type", z.Primitive
|
|
|
2650
2650
|
type: "RESERVATION";
|
|
2651
2651
|
reservationId: string;
|
|
2652
2652
|
}> | z.ZodObject<z.extendShape<{
|
|
2653
|
-
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
|
|
2653
|
+
type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
|
|
2654
2654
|
}, {
|
|
2655
2655
|
type: z.ZodLiteral<"TAKEAWAY">;
|
|
2656
2656
|
slot: z.ZodString;
|