@feedmepos/mf-order-setting 0.0.31 → 0.0.33
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-CWzmu0rZ.js → KioskDevicesView-CxZI99me.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CldPl8BW.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-EGj4fxeN.js} +2 -2
- package/dist/{KioskSettingView-BsxOiUdj.js → KioskSettingView-CTDY8__s.js} +1 -1
- package/dist/{KioskView-DBnQe7Mp.js → KioskView-IUQTvUF8.js} +4 -4
- package/dist/{OrderSettingsView-BvDtRpI_.js → OrderSettingsView-VLE9yxNt.js} +9404 -9191
- package/dist/{app-G3iTmEHp.js → app-cd45Ryph.js} +12 -8
- package/dist/app.js +1 -1
- package/dist/common/convertor/index.d.ts +2 -0
- package/dist/{dayjs.min-ChzYZzP1.js → dayjs.min-CRAlrjJy.js} +1 -1
- package/dist/frontend/mf-order/src/api/remoteOrder/index.d.ts +5 -2
- package/dist/frontend/mf-order/src/app.d.ts +4 -0
- package/dist/frontend/mf-order/src/main.d.ts +4 -0
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +5 -2
- package/dist/frontend/mf-order/src/views/order-settings/delivery/DeliverySetting.vue.d.ts +1 -1
- package/dist/frontend/mf-order/src/views/order-settings/delivery/delivery.d.ts +3 -1
- package/dist/frontend/mf-order/src/views/order-settings/delivery/delivery.data.d.ts +3 -1
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/DeliverooSetting.vue.d.ts +46 -0
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +4 -4
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-Bacw_1Kj.js → index-DLWAy-3K.js} +2 -2
- package/dist/{queue.do-BtfSllT8.js → menu.dto-DGDI6XwH.js} +24399 -23624
- package/dist/package/entity/booking/booking.do.d.ts +20 -20
- package/dist/package/entity/delivery/delivery.dto.d.ts +4 -4
- package/dist/package/entity/food-court/food-court.dto.d.ts +29 -29
- package/dist/package/entity/food-court/order.do.d.ts +4 -2
- package/dist/package/entity/food-court/order.dto.d.ts +9524 -91
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +4 -4
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +126 -0
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +12 -12
- package/dist/package/entity/index.d.ts +23 -1
- package/dist/package/entity/kiosk/kiosk.do.d.ts +6 -6
- package/dist/package/entity/kiosk/kiosk.dto.d.ts +6 -6
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +64 -17
- package/dist/package/entity/marketing/marketing.dto.d.ts +239 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +10 -2
- package/dist/package/entity/order/order.dto.d.ts +24 -16
- package/dist/package/entity/order-platform/deliveroo/deliveroo-dto.d.ts +523 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo-order.do.d.ts +7814 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo-order.dto.d.ts +15 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo-setting.do.d.ts +37 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo.enum.d.ts +31 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo.menu.dto.d.ts +2341 -0
- package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +2073 -0
- package/dist/package/entity/order-platform/external/menu/external-menu.do.d.ts +736 -214
- package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +3 -3
- package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +3 -3
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +4 -4
- package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +2 -2
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +4 -4
- package/dist/package/entity/order-platform/menu.dto.d.ts +44 -44
- package/dist/package/entity/order-platform/order-platform.enum.d.ts +6 -1
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +59 -4
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +32 -0
- package/dist/package/entity/queue/queue.do.d.ts +12 -0
- package/dist/package/entity/queue/queue.dto.d.ts +9 -9
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +9 -9
- package/package.json +2 -2
- package/src/api/remoteOrder/index.ts +20 -2
- package/src/locales/en-US.json +1 -0
- package/src/locales/th-TH.json +1 -0
- package/src/locales/zh-CN.json +2 -0
- package/src/stores/restaurant/index.ts +12 -7
- package/src/views/order-settings/delivery/DeliverySetting.vue +141 -57
- package/src/views/order-settings/delivery/delivery.data.ts +10 -1
- package/src/views/order-settings/delivery/delivery.ts +34 -9
- package/src/views/order-settings/delivery/integrated-delivery/DeliverooSetting.vue +109 -0
- package/src/views/order-settings/delivery/integrated-delivery/IntegratedDelivery.vue +11 -10
|
@@ -5574,9 +5574,9 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5574
5574
|
_id: string;
|
|
5575
5575
|
level: number;
|
|
5576
5576
|
balance: number;
|
|
5577
|
+
tier: number;
|
|
5577
5578
|
business: string;
|
|
5578
5579
|
experience: number;
|
|
5579
|
-
tier: number;
|
|
5580
5580
|
stat: {
|
|
5581
5581
|
lastVisit?: string | null | undefined;
|
|
5582
5582
|
visitCount: number;
|
|
@@ -5676,9 +5676,9 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5676
5676
|
_id: string;
|
|
5677
5677
|
level: number;
|
|
5678
5678
|
balance: number;
|
|
5679
|
+
tier: number;
|
|
5679
5680
|
business: string;
|
|
5680
5681
|
experience: number;
|
|
5681
|
-
tier: number;
|
|
5682
5682
|
stat: {
|
|
5683
5683
|
lastVisit?: string | null | undefined;
|
|
5684
5684
|
visitCount: number;
|
|
@@ -6261,9 +6261,9 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6261
6261
|
_id: string;
|
|
6262
6262
|
level: number;
|
|
6263
6263
|
balance: number;
|
|
6264
|
+
tier: number;
|
|
6264
6265
|
business: string;
|
|
6265
6266
|
experience: number;
|
|
6266
|
-
tier: number;
|
|
6267
6267
|
stat: {
|
|
6268
6268
|
lastVisit?: string | null | undefined;
|
|
6269
6269
|
visitCount: number;
|
|
@@ -6814,9 +6814,9 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6814
6814
|
_id: string;
|
|
6815
6815
|
level: number;
|
|
6816
6816
|
balance: number;
|
|
6817
|
+
tier: number;
|
|
6817
6818
|
business: string;
|
|
6818
6819
|
experience: number;
|
|
6819
|
-
tier: number;
|
|
6820
6820
|
stat: {
|
|
6821
6821
|
lastVisit?: string | null | undefined;
|
|
6822
6822
|
visitCount: number;
|
|
@@ -225,6 +225,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
225
225
|
}>, "many">>>;
|
|
226
226
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
227
227
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
228
|
+
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
228
229
|
}, "strip", z.ZodTypeAny, {
|
|
229
230
|
unit?: string | null | undefined;
|
|
230
231
|
categoryName?: string | null | undefined;
|
|
@@ -270,6 +271,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
270
271
|
systemCode: string;
|
|
271
272
|
}[] | null | undefined;
|
|
272
273
|
customAttributes?: Record<string, any> | null | undefined;
|
|
274
|
+
subCategories?: string[] | null | undefined;
|
|
273
275
|
code: string;
|
|
274
276
|
name: string;
|
|
275
277
|
price: {
|
|
@@ -322,6 +324,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
322
324
|
systemCode: string;
|
|
323
325
|
}[] | null | undefined;
|
|
324
326
|
customAttributes?: Record<string, any> | null | undefined;
|
|
327
|
+
subCategories?: string[] | null | undefined;
|
|
325
328
|
code: string;
|
|
326
329
|
name: string;
|
|
327
330
|
price: {
|
|
@@ -1124,6 +1127,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
1124
1127
|
systemCode: string;
|
|
1125
1128
|
}[] | null | undefined;
|
|
1126
1129
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1130
|
+
subCategories?: string[] | null | undefined;
|
|
1127
1131
|
code: string;
|
|
1128
1132
|
name: string;
|
|
1129
1133
|
price: {
|
|
@@ -2049,6 +2053,16 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
2049
2053
|
balance: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2050
2054
|
level: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2051
2055
|
title: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2056
|
+
tier: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2057
|
+
id: z.ZodString;
|
|
2058
|
+
imageUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2059
|
+
}, "strip", z.ZodTypeAny, {
|
|
2060
|
+
imageUrl?: string | null | undefined;
|
|
2061
|
+
id: string;
|
|
2062
|
+
}, {
|
|
2063
|
+
imageUrl?: string | null | undefined;
|
|
2064
|
+
id: string;
|
|
2065
|
+
}>>>;
|
|
2052
2066
|
benefits: z.ZodArray<z.ZodObject<{
|
|
2053
2067
|
id: z.ZodString;
|
|
2054
2068
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2066,6 +2080,10 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
2066
2080
|
phoneNumber?: string | null | undefined;
|
|
2067
2081
|
balance?: number | null | undefined;
|
|
2068
2082
|
birthday?: string | null | undefined;
|
|
2083
|
+
tier?: {
|
|
2084
|
+
imageUrl?: string | null | undefined;
|
|
2085
|
+
id: string;
|
|
2086
|
+
} | null | undefined;
|
|
2069
2087
|
mostPurchasedItems?: string[] | null | undefined;
|
|
2070
2088
|
id: string;
|
|
2071
2089
|
userId: string;
|
|
@@ -2080,6 +2098,10 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
2080
2098
|
phoneNumber?: string | null | undefined;
|
|
2081
2099
|
balance?: number | null | undefined;
|
|
2082
2100
|
birthday?: string | null | undefined;
|
|
2101
|
+
tier?: {
|
|
2102
|
+
imageUrl?: string | null | undefined;
|
|
2103
|
+
id: string;
|
|
2104
|
+
} | null | undefined;
|
|
2083
2105
|
mostPurchasedItems?: string[] | null | undefined;
|
|
2084
2106
|
id: string;
|
|
2085
2107
|
userId: string;
|
|
@@ -3868,6 +3890,10 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
3868
3890
|
phoneNumber?: string | null | undefined;
|
|
3869
3891
|
balance?: number | null | undefined;
|
|
3870
3892
|
birthday?: string | null | undefined;
|
|
3893
|
+
tier?: {
|
|
3894
|
+
imageUrl?: string | null | undefined;
|
|
3895
|
+
id: string;
|
|
3896
|
+
} | null | undefined;
|
|
3871
3897
|
mostPurchasedItems?: string[] | null | undefined;
|
|
3872
3898
|
id: string;
|
|
3873
3899
|
userId: string;
|
|
@@ -4174,6 +4200,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
4174
4200
|
systemCode: string;
|
|
4175
4201
|
}[] | null | undefined;
|
|
4176
4202
|
customAttributes?: Record<string, any> | null | undefined;
|
|
4203
|
+
subCategories?: string[] | null | undefined;
|
|
4177
4204
|
code: string;
|
|
4178
4205
|
name: string;
|
|
4179
4206
|
price: {
|
|
@@ -4657,6 +4684,10 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
4657
4684
|
phoneNumber?: string | null | undefined;
|
|
4658
4685
|
balance?: number | null | undefined;
|
|
4659
4686
|
birthday?: string | null | undefined;
|
|
4687
|
+
tier?: {
|
|
4688
|
+
imageUrl?: string | null | undefined;
|
|
4689
|
+
id: string;
|
|
4690
|
+
} | null | undefined;
|
|
4660
4691
|
mostPurchasedItems?: string[] | null | undefined;
|
|
4661
4692
|
id: string;
|
|
4662
4693
|
userId: string;
|
|
@@ -4963,6 +4994,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
4963
4994
|
systemCode: string;
|
|
4964
4995
|
}[] | null | undefined;
|
|
4965
4996
|
customAttributes?: Record<string, any> | null | undefined;
|
|
4997
|
+
subCategories?: string[] | null | undefined;
|
|
4966
4998
|
code: string;
|
|
4967
4999
|
name: string;
|
|
4968
5000
|
price: {
|
|
@@ -5502,6 +5534,10 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
5502
5534
|
phoneNumber?: string | null | undefined;
|
|
5503
5535
|
balance?: number | null | undefined;
|
|
5504
5536
|
birthday?: string | null | undefined;
|
|
5537
|
+
tier?: {
|
|
5538
|
+
imageUrl?: string | null | undefined;
|
|
5539
|
+
id: string;
|
|
5540
|
+
} | null | undefined;
|
|
5505
5541
|
mostPurchasedItems?: string[] | null | undefined;
|
|
5506
5542
|
id: string;
|
|
5507
5543
|
userId: string;
|
|
@@ -5808,6 +5844,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
5808
5844
|
systemCode: string;
|
|
5809
5845
|
}[] | null | undefined;
|
|
5810
5846
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5847
|
+
subCategories?: string[] | null | undefined;
|
|
5811
5848
|
code: string;
|
|
5812
5849
|
name: string;
|
|
5813
5850
|
price: {
|
|
@@ -6320,6 +6357,10 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
6320
6357
|
phoneNumber?: string | null | undefined;
|
|
6321
6358
|
balance?: number | null | undefined;
|
|
6322
6359
|
birthday?: string | null | undefined;
|
|
6360
|
+
tier?: {
|
|
6361
|
+
imageUrl?: string | null | undefined;
|
|
6362
|
+
id: string;
|
|
6363
|
+
} | null | undefined;
|
|
6323
6364
|
mostPurchasedItems?: string[] | null | undefined;
|
|
6324
6365
|
id: string;
|
|
6325
6366
|
userId: string;
|
|
@@ -6626,6 +6667,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
|
|
|
6626
6667
|
systemCode: string;
|
|
6627
6668
|
}[] | null | undefined;
|
|
6628
6669
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6670
|
+
subCategories?: string[] | null | undefined;
|
|
6629
6671
|
code: string;
|
|
6630
6672
|
name: string;
|
|
6631
6673
|
price: {
|
|
@@ -7004,6 +7046,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
7004
7046
|
}>, "many">>>;
|
|
7005
7047
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7006
7048
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
7049
|
+
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
7007
7050
|
}, "strip", z.ZodTypeAny, {
|
|
7008
7051
|
unit?: string | null | undefined;
|
|
7009
7052
|
categoryName?: string | null | undefined;
|
|
@@ -7049,6 +7092,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
7049
7092
|
systemCode: string;
|
|
7050
7093
|
}[] | null | undefined;
|
|
7051
7094
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7095
|
+
subCategories?: string[] | null | undefined;
|
|
7052
7096
|
code: string;
|
|
7053
7097
|
name: string;
|
|
7054
7098
|
price: {
|
|
@@ -7101,6 +7145,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
7101
7145
|
systemCode: string;
|
|
7102
7146
|
}[] | null | undefined;
|
|
7103
7147
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7148
|
+
subCategories?: string[] | null | undefined;
|
|
7104
7149
|
code: string;
|
|
7105
7150
|
name: string;
|
|
7106
7151
|
price: {
|
|
@@ -7903,6 +7948,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
7903
7948
|
systemCode: string;
|
|
7904
7949
|
}[] | null | undefined;
|
|
7905
7950
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7951
|
+
subCategories?: string[] | null | undefined;
|
|
7906
7952
|
code: string;
|
|
7907
7953
|
name: string;
|
|
7908
7954
|
price: {
|
|
@@ -8828,6 +8874,16 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
8828
8874
|
balance: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
8829
8875
|
level: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
8830
8876
|
title: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
8877
|
+
tier: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8878
|
+
id: z.ZodString;
|
|
8879
|
+
imageUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8880
|
+
}, "strip", z.ZodTypeAny, {
|
|
8881
|
+
imageUrl?: string | null | undefined;
|
|
8882
|
+
id: string;
|
|
8883
|
+
}, {
|
|
8884
|
+
imageUrl?: string | null | undefined;
|
|
8885
|
+
id: string;
|
|
8886
|
+
}>>>;
|
|
8831
8887
|
benefits: z.ZodArray<z.ZodObject<{
|
|
8832
8888
|
id: z.ZodString;
|
|
8833
8889
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8845,6 +8901,10 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
8845
8901
|
phoneNumber?: string | null | undefined;
|
|
8846
8902
|
balance?: number | null | undefined;
|
|
8847
8903
|
birthday?: string | null | undefined;
|
|
8904
|
+
tier?: {
|
|
8905
|
+
imageUrl?: string | null | undefined;
|
|
8906
|
+
id: string;
|
|
8907
|
+
} | null | undefined;
|
|
8848
8908
|
mostPurchasedItems?: string[] | null | undefined;
|
|
8849
8909
|
id: string;
|
|
8850
8910
|
userId: string;
|
|
@@ -8859,6 +8919,10 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
8859
8919
|
phoneNumber?: string | null | undefined;
|
|
8860
8920
|
balance?: number | null | undefined;
|
|
8861
8921
|
birthday?: string | null | undefined;
|
|
8922
|
+
tier?: {
|
|
8923
|
+
imageUrl?: string | null | undefined;
|
|
8924
|
+
id: string;
|
|
8925
|
+
} | null | undefined;
|
|
8862
8926
|
mostPurchasedItems?: string[] | null | undefined;
|
|
8863
8927
|
id: string;
|
|
8864
8928
|
userId: string;
|
|
@@ -10647,6 +10711,10 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
10647
10711
|
phoneNumber?: string | null | undefined;
|
|
10648
10712
|
balance?: number | null | undefined;
|
|
10649
10713
|
birthday?: string | null | undefined;
|
|
10714
|
+
tier?: {
|
|
10715
|
+
imageUrl?: string | null | undefined;
|
|
10716
|
+
id: string;
|
|
10717
|
+
} | null | undefined;
|
|
10650
10718
|
mostPurchasedItems?: string[] | null | undefined;
|
|
10651
10719
|
id: string;
|
|
10652
10720
|
userId: string;
|
|
@@ -10953,6 +11021,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
10953
11021
|
systemCode: string;
|
|
10954
11022
|
}[] | null | undefined;
|
|
10955
11023
|
customAttributes?: Record<string, any> | null | undefined;
|
|
11024
|
+
subCategories?: string[] | null | undefined;
|
|
10956
11025
|
code: string;
|
|
10957
11026
|
name: string;
|
|
10958
11027
|
price: {
|
|
@@ -11436,6 +11505,10 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
11436
11505
|
phoneNumber?: string | null | undefined;
|
|
11437
11506
|
balance?: number | null | undefined;
|
|
11438
11507
|
birthday?: string | null | undefined;
|
|
11508
|
+
tier?: {
|
|
11509
|
+
imageUrl?: string | null | undefined;
|
|
11510
|
+
id: string;
|
|
11511
|
+
} | null | undefined;
|
|
11439
11512
|
mostPurchasedItems?: string[] | null | undefined;
|
|
11440
11513
|
id: string;
|
|
11441
11514
|
userId: string;
|
|
@@ -11742,6 +11815,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
11742
11815
|
systemCode: string;
|
|
11743
11816
|
}[] | null | undefined;
|
|
11744
11817
|
customAttributes?: Record<string, any> | null | undefined;
|
|
11818
|
+
subCategories?: string[] | null | undefined;
|
|
11745
11819
|
code: string;
|
|
11746
11820
|
name: string;
|
|
11747
11821
|
price: {
|
|
@@ -12281,6 +12355,10 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
12281
12355
|
phoneNumber?: string | null | undefined;
|
|
12282
12356
|
balance?: number | null | undefined;
|
|
12283
12357
|
birthday?: string | null | undefined;
|
|
12358
|
+
tier?: {
|
|
12359
|
+
imageUrl?: string | null | undefined;
|
|
12360
|
+
id: string;
|
|
12361
|
+
} | null | undefined;
|
|
12284
12362
|
mostPurchasedItems?: string[] | null | undefined;
|
|
12285
12363
|
id: string;
|
|
12286
12364
|
userId: string;
|
|
@@ -12587,6 +12665,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
12587
12665
|
systemCode: string;
|
|
12588
12666
|
}[] | null | undefined;
|
|
12589
12667
|
customAttributes?: Record<string, any> | null | undefined;
|
|
12668
|
+
subCategories?: string[] | null | undefined;
|
|
12590
12669
|
code: string;
|
|
12591
12670
|
name: string;
|
|
12592
12671
|
price: {
|
|
@@ -13099,6 +13178,10 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
13099
13178
|
phoneNumber?: string | null | undefined;
|
|
13100
13179
|
balance?: number | null | undefined;
|
|
13101
13180
|
birthday?: string | null | undefined;
|
|
13181
|
+
tier?: {
|
|
13182
|
+
imageUrl?: string | null | undefined;
|
|
13183
|
+
id: string;
|
|
13184
|
+
} | null | undefined;
|
|
13102
13185
|
mostPurchasedItems?: string[] | null | undefined;
|
|
13103
13186
|
id: string;
|
|
13104
13187
|
userId: string;
|
|
@@ -13405,6 +13488,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
|
|
|
13405
13488
|
systemCode: string;
|
|
13406
13489
|
}[] | null | undefined;
|
|
13407
13490
|
customAttributes?: Record<string, any> | null | undefined;
|
|
13491
|
+
subCategories?: string[] | null | undefined;
|
|
13408
13492
|
code: string;
|
|
13409
13493
|
name: string;
|
|
13410
13494
|
price: {
|
|
@@ -13783,6 +13867,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
13783
13867
|
}>, "many">>>;
|
|
13784
13868
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13785
13869
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
13870
|
+
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
13786
13871
|
}, "strip", z.ZodTypeAny, {
|
|
13787
13872
|
unit?: string | null | undefined;
|
|
13788
13873
|
categoryName?: string | null | undefined;
|
|
@@ -13828,6 +13913,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
13828
13913
|
systemCode: string;
|
|
13829
13914
|
}[] | null | undefined;
|
|
13830
13915
|
customAttributes?: Record<string, any> | null | undefined;
|
|
13916
|
+
subCategories?: string[] | null | undefined;
|
|
13831
13917
|
code: string;
|
|
13832
13918
|
name: string;
|
|
13833
13919
|
price: {
|
|
@@ -13880,6 +13966,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
13880
13966
|
systemCode: string;
|
|
13881
13967
|
}[] | null | undefined;
|
|
13882
13968
|
customAttributes?: Record<string, any> | null | undefined;
|
|
13969
|
+
subCategories?: string[] | null | undefined;
|
|
13883
13970
|
code: string;
|
|
13884
13971
|
name: string;
|
|
13885
13972
|
price: {
|
|
@@ -14682,6 +14769,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
14682
14769
|
systemCode: string;
|
|
14683
14770
|
}[] | null | undefined;
|
|
14684
14771
|
customAttributes?: Record<string, any> | null | undefined;
|
|
14772
|
+
subCategories?: string[] | null | undefined;
|
|
14685
14773
|
code: string;
|
|
14686
14774
|
name: string;
|
|
14687
14775
|
price: {
|
|
@@ -15607,6 +15695,16 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
15607
15695
|
balance: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
15608
15696
|
level: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
15609
15697
|
title: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
15698
|
+
tier: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
15699
|
+
id: z.ZodString;
|
|
15700
|
+
imageUrl: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15701
|
+
}, "strip", z.ZodTypeAny, {
|
|
15702
|
+
imageUrl?: string | null | undefined;
|
|
15703
|
+
id: string;
|
|
15704
|
+
}, {
|
|
15705
|
+
imageUrl?: string | null | undefined;
|
|
15706
|
+
id: string;
|
|
15707
|
+
}>>>;
|
|
15610
15708
|
benefits: z.ZodArray<z.ZodObject<{
|
|
15611
15709
|
id: z.ZodString;
|
|
15612
15710
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15624,6 +15722,10 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
15624
15722
|
phoneNumber?: string | null | undefined;
|
|
15625
15723
|
balance?: number | null | undefined;
|
|
15626
15724
|
birthday?: string | null | undefined;
|
|
15725
|
+
tier?: {
|
|
15726
|
+
imageUrl?: string | null | undefined;
|
|
15727
|
+
id: string;
|
|
15728
|
+
} | null | undefined;
|
|
15627
15729
|
mostPurchasedItems?: string[] | null | undefined;
|
|
15628
15730
|
id: string;
|
|
15629
15731
|
userId: string;
|
|
@@ -15638,6 +15740,10 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
15638
15740
|
phoneNumber?: string | null | undefined;
|
|
15639
15741
|
balance?: number | null | undefined;
|
|
15640
15742
|
birthday?: string | null | undefined;
|
|
15743
|
+
tier?: {
|
|
15744
|
+
imageUrl?: string | null | undefined;
|
|
15745
|
+
id: string;
|
|
15746
|
+
} | null | undefined;
|
|
15641
15747
|
mostPurchasedItems?: string[] | null | undefined;
|
|
15642
15748
|
id: string;
|
|
15643
15749
|
userId: string;
|
|
@@ -17426,6 +17532,10 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
17426
17532
|
phoneNumber?: string | null | undefined;
|
|
17427
17533
|
balance?: number | null | undefined;
|
|
17428
17534
|
birthday?: string | null | undefined;
|
|
17535
|
+
tier?: {
|
|
17536
|
+
imageUrl?: string | null | undefined;
|
|
17537
|
+
id: string;
|
|
17538
|
+
} | null | undefined;
|
|
17429
17539
|
mostPurchasedItems?: string[] | null | undefined;
|
|
17430
17540
|
id: string;
|
|
17431
17541
|
userId: string;
|
|
@@ -17732,6 +17842,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
17732
17842
|
systemCode: string;
|
|
17733
17843
|
}[] | null | undefined;
|
|
17734
17844
|
customAttributes?: Record<string, any> | null | undefined;
|
|
17845
|
+
subCategories?: string[] | null | undefined;
|
|
17735
17846
|
code: string;
|
|
17736
17847
|
name: string;
|
|
17737
17848
|
price: {
|
|
@@ -18215,6 +18326,10 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
18215
18326
|
phoneNumber?: string | null | undefined;
|
|
18216
18327
|
balance?: number | null | undefined;
|
|
18217
18328
|
birthday?: string | null | undefined;
|
|
18329
|
+
tier?: {
|
|
18330
|
+
imageUrl?: string | null | undefined;
|
|
18331
|
+
id: string;
|
|
18332
|
+
} | null | undefined;
|
|
18218
18333
|
mostPurchasedItems?: string[] | null | undefined;
|
|
18219
18334
|
id: string;
|
|
18220
18335
|
userId: string;
|
|
@@ -18521,6 +18636,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
18521
18636
|
systemCode: string;
|
|
18522
18637
|
}[] | null | undefined;
|
|
18523
18638
|
customAttributes?: Record<string, any> | null | undefined;
|
|
18639
|
+
subCategories?: string[] | null | undefined;
|
|
18524
18640
|
code: string;
|
|
18525
18641
|
name: string;
|
|
18526
18642
|
price: {
|
|
@@ -19060,6 +19176,10 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
19060
19176
|
phoneNumber?: string | null | undefined;
|
|
19061
19177
|
balance?: number | null | undefined;
|
|
19062
19178
|
birthday?: string | null | undefined;
|
|
19179
|
+
tier?: {
|
|
19180
|
+
imageUrl?: string | null | undefined;
|
|
19181
|
+
id: string;
|
|
19182
|
+
} | null | undefined;
|
|
19063
19183
|
mostPurchasedItems?: string[] | null | undefined;
|
|
19064
19184
|
id: string;
|
|
19065
19185
|
userId: string;
|
|
@@ -19366,6 +19486,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
19366
19486
|
systemCode: string;
|
|
19367
19487
|
}[] | null | undefined;
|
|
19368
19488
|
customAttributes?: Record<string, any> | null | undefined;
|
|
19489
|
+
subCategories?: string[] | null | undefined;
|
|
19369
19490
|
code: string;
|
|
19370
19491
|
name: string;
|
|
19371
19492
|
price: {
|
|
@@ -19878,6 +19999,10 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
19878
19999
|
phoneNumber?: string | null | undefined;
|
|
19879
20000
|
balance?: number | null | undefined;
|
|
19880
20001
|
birthday?: string | null | undefined;
|
|
20002
|
+
tier?: {
|
|
20003
|
+
imageUrl?: string | null | undefined;
|
|
20004
|
+
id: string;
|
|
20005
|
+
} | null | undefined;
|
|
19881
20006
|
mostPurchasedItems?: string[] | null | undefined;
|
|
19882
20007
|
id: string;
|
|
19883
20008
|
userId: string;
|
|
@@ -20184,6 +20309,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
|
|
|
20184
20309
|
systemCode: string;
|
|
20185
20310
|
}[] | null | undefined;
|
|
20186
20311
|
customAttributes?: Record<string, any> | null | undefined;
|
|
20312
|
+
subCategories?: string[] | null | undefined;
|
|
20187
20313
|
code: string;
|
|
20188
20314
|
name: string;
|
|
20189
20315
|
price: {
|
|
@@ -2760,9 +2760,9 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
2760
2760
|
_id: string;
|
|
2761
2761
|
level: number;
|
|
2762
2762
|
balance: number;
|
|
2763
|
+
tier: number;
|
|
2763
2764
|
business: string;
|
|
2764
2765
|
experience: number;
|
|
2765
|
-
tier: number;
|
|
2766
2766
|
stat: {
|
|
2767
2767
|
lastVisit?: string | null | undefined;
|
|
2768
2768
|
visitCount: number;
|
|
@@ -2862,9 +2862,9 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
2862
2862
|
_id: string;
|
|
2863
2863
|
level: number;
|
|
2864
2864
|
balance: number;
|
|
2865
|
+
tier: number;
|
|
2865
2866
|
business: string;
|
|
2866
2867
|
experience: number;
|
|
2867
|
-
tier: number;
|
|
2868
2868
|
stat: {
|
|
2869
2869
|
lastVisit?: string | null | undefined;
|
|
2870
2870
|
visitCount: number;
|
|
@@ -3447,9 +3447,9 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
3447
3447
|
_id: string;
|
|
3448
3448
|
level: number;
|
|
3449
3449
|
balance: number;
|
|
3450
|
+
tier: number;
|
|
3450
3451
|
business: string;
|
|
3451
3452
|
experience: number;
|
|
3452
|
-
tier: number;
|
|
3453
3453
|
stat: {
|
|
3454
3454
|
lastVisit?: string | null | undefined;
|
|
3455
3455
|
visitCount: number;
|
|
@@ -4000,9 +4000,9 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
4000
4000
|
_id: string;
|
|
4001
4001
|
level: number;
|
|
4002
4002
|
balance: number;
|
|
4003
|
+
tier: number;
|
|
4003
4004
|
business: string;
|
|
4004
4005
|
experience: number;
|
|
4005
|
-
tier: number;
|
|
4006
4006
|
stat: {
|
|
4007
4007
|
lastVisit?: string | null | undefined;
|
|
4008
4008
|
visitCount: number;
|
|
@@ -4594,9 +4594,9 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
4594
4594
|
_id: string;
|
|
4595
4595
|
level: number;
|
|
4596
4596
|
balance: number;
|
|
4597
|
+
tier: number;
|
|
4597
4598
|
business: string;
|
|
4598
4599
|
experience: number;
|
|
4599
|
-
tier: number;
|
|
4600
4600
|
stat: {
|
|
4601
4601
|
lastVisit?: string | null | undefined;
|
|
4602
4602
|
visitCount: number;
|
|
@@ -5162,9 +5162,9 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
|
|
|
5162
5162
|
_id: string;
|
|
5163
5163
|
level: number;
|
|
5164
5164
|
balance: number;
|
|
5165
|
+
tier: number;
|
|
5165
5166
|
business: string;
|
|
5166
5167
|
experience: number;
|
|
5167
|
-
tier: number;
|
|
5168
5168
|
stat: {
|
|
5169
5169
|
lastVisit?: string | null | undefined;
|
|
5170
5170
|
visitCount: number;
|
|
@@ -8334,9 +8334,9 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
8334
8334
|
_id: string;
|
|
8335
8335
|
level: number;
|
|
8336
8336
|
balance: number;
|
|
8337
|
+
tier: number;
|
|
8337
8338
|
business: string;
|
|
8338
8339
|
experience: number;
|
|
8339
|
-
tier: number;
|
|
8340
8340
|
stat: {
|
|
8341
8341
|
lastVisit?: string | null | undefined;
|
|
8342
8342
|
visitCount: number;
|
|
@@ -8436,9 +8436,9 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
8436
8436
|
_id: string;
|
|
8437
8437
|
level: number;
|
|
8438
8438
|
balance: number;
|
|
8439
|
+
tier: number;
|
|
8439
8440
|
business: string;
|
|
8440
8441
|
experience: number;
|
|
8441
|
-
tier: number;
|
|
8442
8442
|
stat: {
|
|
8443
8443
|
lastVisit?: string | null | undefined;
|
|
8444
8444
|
visitCount: number;
|
|
@@ -9021,9 +9021,9 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
9021
9021
|
_id: string;
|
|
9022
9022
|
level: number;
|
|
9023
9023
|
balance: number;
|
|
9024
|
+
tier: number;
|
|
9024
9025
|
business: string;
|
|
9025
9026
|
experience: number;
|
|
9026
|
-
tier: number;
|
|
9027
9027
|
stat: {
|
|
9028
9028
|
lastVisit?: string | null | undefined;
|
|
9029
9029
|
visitCount: number;
|
|
@@ -9574,9 +9574,9 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
9574
9574
|
_id: string;
|
|
9575
9575
|
level: number;
|
|
9576
9576
|
balance: number;
|
|
9577
|
+
tier: number;
|
|
9577
9578
|
business: string;
|
|
9578
9579
|
experience: number;
|
|
9579
|
-
tier: number;
|
|
9580
9580
|
stat: {
|
|
9581
9581
|
lastVisit?: string | null | undefined;
|
|
9582
9582
|
visitCount: number;
|
|
@@ -10132,9 +10132,9 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
10132
10132
|
_id: string;
|
|
10133
10133
|
level: number;
|
|
10134
10134
|
balance: number;
|
|
10135
|
+
tier: number;
|
|
10135
10136
|
business: string;
|
|
10136
10137
|
experience: number;
|
|
10137
|
-
tier: number;
|
|
10138
10138
|
stat: {
|
|
10139
10139
|
lastVisit?: string | null | undefined;
|
|
10140
10140
|
visitCount: number;
|
|
@@ -10701,9 +10701,9 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
|
|
|
10701
10701
|
_id: string;
|
|
10702
10702
|
level: number;
|
|
10703
10703
|
balance: number;
|
|
10704
|
+
tier: number;
|
|
10704
10705
|
business: string;
|
|
10705
10706
|
experience: number;
|
|
10706
|
-
tier: number;
|
|
10707
10707
|
stat: {
|
|
10708
10708
|
lastVisit?: string | null | undefined;
|
|
10709
10709
|
visitCount: number;
|
|
@@ -32,6 +32,7 @@ export * from './order-platform/base-integration.dto';
|
|
|
32
32
|
export * from './order-platform/external/auth/external-auth.do';
|
|
33
33
|
export * from './order-platform/external/auth/external-auth.dto';
|
|
34
34
|
export * from './order-platform/external/menu/external-menu.dto';
|
|
35
|
+
export * from './order-platform/external/menu/external-master-menu.do';
|
|
35
36
|
export * from './order-platform/external/menu/external-menu.enum';
|
|
36
37
|
export * from './order-platform/external/zus/zus-menu.dto';
|
|
37
38
|
export * from './order-platform/external/order/external-order.do';
|
|
@@ -124,5 +125,26 @@ export * from './websocket/websocket.dto';
|
|
|
124
125
|
export * from './delivery/delivery.do';
|
|
125
126
|
export * from './order/order.do';
|
|
126
127
|
export * from './order/order.dto';
|
|
127
|
-
export * from './order/menu/menu.dto';
|
|
128
128
|
export * from './queue/queue.do';
|
|
129
|
+
export * from './marketing/marketing.dto';
|
|
130
|
+
export * from './member/member.dto';
|
|
131
|
+
export * from './payment/payment.enum';
|
|
132
|
+
export * from './payment/payment.dto';
|
|
133
|
+
export * from './kiosk/kiosk.do';
|
|
134
|
+
export * from './kiosk/kiosk.dto';
|
|
135
|
+
export * from './printer/printer.do';
|
|
136
|
+
export * from './kiosk/scanner/scanner.do';
|
|
137
|
+
export * from './kiosk/scanner/scanner.dto';
|
|
138
|
+
export * from './kiosk/scanner/scanner.enum';
|
|
139
|
+
export * from './kiosk/marketing/marketing.dto';
|
|
140
|
+
export * from './pubsub/pubsub.enum';
|
|
141
|
+
export * from './pubsub/ably/ably.enum';
|
|
142
|
+
export * from './pubsub/ably/ably.do';
|
|
143
|
+
export * from './auth/auth.dto';
|
|
144
|
+
export * from './order-platform/deliveroo/deliveroo.enum';
|
|
145
|
+
export * from './order-platform/deliveroo/deliveroo.menu.dto';
|
|
146
|
+
export * from './order-platform/deliveroo/deliveroo-dto';
|
|
147
|
+
export * from './order-platform/deliveroo/deliveroo-setting.do';
|
|
148
|
+
export * from './order-platform/deliveroo/deliveroo-order.do';
|
|
149
|
+
export * from './order-platform/deliveroo/deliveroo-order.dto';
|
|
150
|
+
export * from './order/menu/menu.dto';
|
|
@@ -1207,6 +1207,10 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
|
|
|
1207
1207
|
expiredAt: Date;
|
|
1208
1208
|
}>>>;
|
|
1209
1209
|
}, "strip", z.ZodTypeAny, {
|
|
1210
|
+
otp?: {
|
|
1211
|
+
code: string;
|
|
1212
|
+
expiredAt: Date;
|
|
1213
|
+
} | null | undefined;
|
|
1210
1214
|
devices?: {
|
|
1211
1215
|
name?: string | null | undefined;
|
|
1212
1216
|
scannerInfo?: {
|
|
@@ -1289,12 +1293,12 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
|
|
|
1289
1293
|
machineId: string;
|
|
1290
1294
|
token: string;
|
|
1291
1295
|
}[] | null | undefined;
|
|
1296
|
+
_id: string;
|
|
1297
|
+
}, {
|
|
1292
1298
|
otp?: {
|
|
1293
1299
|
code: string;
|
|
1294
1300
|
expiredAt: Date;
|
|
1295
1301
|
} | null | undefined;
|
|
1296
|
-
_id: string;
|
|
1297
|
-
}, {
|
|
1298
1302
|
devices?: {
|
|
1299
1303
|
name?: string | null | undefined;
|
|
1300
1304
|
scannerInfo?: {
|
|
@@ -1377,10 +1381,6 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
|
|
|
1377
1381
|
machineId: string;
|
|
1378
1382
|
token: string;
|
|
1379
1383
|
}[] | null | undefined;
|
|
1380
|
-
otp?: {
|
|
1381
|
-
code: string;
|
|
1382
|
-
expiredAt: Date;
|
|
1383
|
-
} | null | undefined;
|
|
1384
1384
|
_id: string;
|
|
1385
1385
|
}>;
|
|
1386
1386
|
export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape<Pick<{
|