@feedmepos/mf-order-setting 0.0.48 → 0.0.50
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-iZTQ--DO.js → KioskDevicesView-u14hzPbE.js} +1 -1
- package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-DBgRDIoS.js +501 -0
- package/dist/{KioskSettingView-mN7UPNYu.js → KioskSettingView-DmvtZcV1.js} +34 -33
- package/dist/KioskView-M8V91gD5.js +474 -0
- package/dist/{OrderSettingsView-B5Nq_u9Z.js → OrderSettingsView-Bl3LshG3.js} +15016 -14688
- package/dist/{app-B3KtJhiw.js → app-CLewMjcd.js} +89 -25
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-GjkM9dM2.js → dayjs.min-DCTYRWyD.js} +1 -1
- package/dist/frontend/mf-order/src/api/restaurant-setting/index.d.ts +2 -1
- package/dist/frontend/mf-order/src/app.d.ts +64 -0
- package/dist/frontend/mf-order/src/main.d.ts +64 -0
- package/dist/frontend/mf-order/src/modules/kiosk/interface.d.ts +1 -0
- package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +3 -0
- package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +1 -0
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +5 -2
- package/dist/frontend/mf-order/src/views/kiosk/devices/KioskDevicesView.vue.d.ts +6 -3
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +8 -0
- package/dist/frontend/mf-order/src/views/order-settings/drive-thru/DriveThruSetting.vue.d.ts +2 -0
- package/dist/frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeRule.vue.d.ts +2 -2
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-Dwzta1U-.js → index-B7LtJeBJ.js} +2 -2
- package/dist/{menu.dto-DgPhiIVk.js → menu.dto-Co7iXHNr.js} +25558 -25019
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +108 -16
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +63 -18
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +118 -18
- package/dist/package/entity/kiosk/kiosk.do.d.ts +32 -0
- package/dist/package/entity/kiosk/kiosk.dto.d.ts +44 -0
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1071 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +8 -0
- package/dist/package/entity/order/order.dto.d.ts +16 -8
- package/dist/package/entity/order/order.enum.d.ts +2 -0
- package/dist/package/entity/order-platform/deliveroo/deliveroo-dto.d.ts +2 -2
- package/dist/package/entity/order-platform/deliveroo/deliveroo-setting.do.d.ts +2 -2
- package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +62 -0
- package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +178 -0
- package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +6 -0
- package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +6 -0
- package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.do.d.ts +4 -4
- package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.dto.d.ts +5 -5
- package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +15 -0
- package/dist/package/entity/order-platform/grabfood/grabfood-omni.do.d.ts +1834 -15
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +13 -13
- package/dist/package/entity/order-platform/grabfood/grabfood-settings.do.d.ts +5 -2
- package/dist/package/entity/order-platform/grabfood/grabfood-webhook.dto.d.ts +528 -805
- package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +14 -11
- package/dist/package/entity/order-platform/grabfood/grabfood.enum.d.ts +1 -1
- package/dist/package/entity/order-platform/order-platform.dto.d.ts +0 -20
- package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.do.d.ts +2 -2
- package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.dto.d.ts +2 -2
- package/dist/package/entity/queue/queue.do.d.ts +12 -0
- package/dist/package/entity/queue/queue.dto.d.ts +26 -6
- package/package.json +4 -4
- package/src/api/restaurant-setting/index.ts +6 -0
- package/src/locales/en-US.json +16 -0
- package/src/locales/ja-JP.json +16 -0
- package/src/locales/th-TH.json +16 -0
- package/src/locales/zh-CN.json +16 -0
- package/src/main.ts +2 -2
- package/src/modules/kiosk/interface.ts +1 -0
- package/src/stores/kiosk/mapper.ts +1 -0
- package/src/stores/restaurant/index.ts +6 -0
- package/src/views/kiosk/KioskSummary.vue +37 -31
- package/src/views/kiosk/KioskView.vue +4 -1
- package/src/views/kiosk/devices/KioskDeviceCard.vue +205 -89
- package/src/views/kiosk/devices/KioskDevicesView.vue +133 -17
- package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +8 -3
- package/src/views/order-settings/OrderSettingsView.vue +6 -1
- package/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue +22 -1
- package/src/views/order-settings/drive-thru/DriveThruSetting.vue +101 -0
- package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-CPDemTBj.js +0 -306
- package/dist/KioskView-NEpc7Ivb.js +0 -452
|
@@ -3817,6 +3817,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
3817
3817
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3818
3818
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3819
3819
|
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3820
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3820
3821
|
}, "strip", z.ZodTypeAny, {
|
|
3821
3822
|
unit?: string | null | undefined;
|
|
3822
3823
|
categoryName?: string | null | undefined;
|
|
@@ -3863,6 +3864,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
3863
3864
|
}[] | null | undefined;
|
|
3864
3865
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3865
3866
|
subCategories?: string[] | null | undefined;
|
|
3867
|
+
shelfLife?: number | null | undefined;
|
|
3866
3868
|
code: string;
|
|
3867
3869
|
name: string;
|
|
3868
3870
|
price: {
|
|
@@ -3916,6 +3918,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
3916
3918
|
}[] | null | undefined;
|
|
3917
3919
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3918
3920
|
subCategories?: string[] | null | undefined;
|
|
3921
|
+
shelfLife?: number | null | undefined;
|
|
3919
3922
|
code: string;
|
|
3920
3923
|
name: string;
|
|
3921
3924
|
price: {
|
|
@@ -4754,6 +4757,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
4754
4757
|
}[] | null | undefined;
|
|
4755
4758
|
customAttributes?: Record<string, any> | null | undefined;
|
|
4756
4759
|
subCategories?: string[] | null | undefined;
|
|
4760
|
+
shelfLife?: number | null | undefined;
|
|
4757
4761
|
code: string;
|
|
4758
4762
|
name: string;
|
|
4759
4763
|
price: {
|
|
@@ -4999,6 +5003,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
4999
5003
|
}[] | null | undefined;
|
|
5000
5004
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5001
5005
|
subCategories?: string[] | null | undefined;
|
|
5006
|
+
shelfLife?: number | null | undefined;
|
|
5002
5007
|
code: string;
|
|
5003
5008
|
name: string;
|
|
5004
5009
|
price: {
|
|
@@ -5458,6 +5463,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
5458
5463
|
}[] | null | undefined;
|
|
5459
5464
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5460
5465
|
subCategories?: string[] | null | undefined;
|
|
5466
|
+
shelfLife?: number | null | undefined;
|
|
5461
5467
|
code: string;
|
|
5462
5468
|
name: string;
|
|
5463
5469
|
price: {
|
|
@@ -5870,6 +5876,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
5870
5876
|
}[] | null | undefined;
|
|
5871
5877
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5872
5878
|
subCategories?: string[] | null | undefined;
|
|
5879
|
+
shelfLife?: number | null | undefined;
|
|
5873
5880
|
code: string;
|
|
5874
5881
|
name: string;
|
|
5875
5882
|
price: {
|
|
@@ -6115,6 +6122,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
6115
6122
|
}[] | null | undefined;
|
|
6116
6123
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6117
6124
|
subCategories?: string[] | null | undefined;
|
|
6125
|
+
shelfLife?: number | null | undefined;
|
|
6118
6126
|
code: string;
|
|
6119
6127
|
name: string;
|
|
6120
6128
|
price: {
|
|
@@ -13449,6 +13449,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13449
13449
|
target: "PAYMENT";
|
|
13450
13450
|
};
|
|
13451
13451
|
success: boolean;
|
|
13452
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13452
13453
|
adjustment: {
|
|
13453
13454
|
inclusive?: boolean | null | undefined;
|
|
13454
13455
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -13458,7 +13459,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13458
13459
|
};
|
|
13459
13460
|
};
|
|
13460
13461
|
referenceId: string;
|
|
13461
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13462
13462
|
}, {
|
|
13463
13463
|
reason?: string | null | undefined;
|
|
13464
13464
|
priority?: number | null | undefined;
|
|
@@ -13540,6 +13540,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13540
13540
|
target: "PAYMENT";
|
|
13541
13541
|
};
|
|
13542
13542
|
success: boolean;
|
|
13543
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13543
13544
|
adjustment: {
|
|
13544
13545
|
inclusive?: boolean | null | undefined;
|
|
13545
13546
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -13549,7 +13550,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13549
13550
|
};
|
|
13550
13551
|
};
|
|
13551
13552
|
referenceId: string;
|
|
13552
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13553
13553
|
}>>, "many">>;
|
|
13554
13554
|
option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
13555
13555
|
type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
|
|
@@ -15656,6 +15656,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15656
15656
|
target: "PAYMENT";
|
|
15657
15657
|
};
|
|
15658
15658
|
success: boolean;
|
|
15659
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15659
15660
|
adjustment: {
|
|
15660
15661
|
inclusive?: boolean | null | undefined;
|
|
15661
15662
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -15665,7 +15666,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15665
15666
|
};
|
|
15666
15667
|
};
|
|
15667
15668
|
referenceId: string;
|
|
15668
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15669
15669
|
})[];
|
|
15670
15670
|
orderAt: string;
|
|
15671
15671
|
}, {
|
|
@@ -15957,6 +15957,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15957
15957
|
target: "PAYMENT";
|
|
15958
15958
|
};
|
|
15959
15959
|
success: boolean;
|
|
15960
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15960
15961
|
adjustment: {
|
|
15961
15962
|
inclusive?: boolean | null | undefined;
|
|
15962
15963
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -15966,7 +15967,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15966
15967
|
};
|
|
15967
15968
|
};
|
|
15968
15969
|
referenceId: string;
|
|
15969
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15970
15970
|
})[] | undefined;
|
|
15971
15971
|
option: {
|
|
15972
15972
|
remark?: string | null | undefined;
|
|
@@ -18841,6 +18841,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18841
18841
|
target: "PAYMENT";
|
|
18842
18842
|
};
|
|
18843
18843
|
success: boolean;
|
|
18844
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18844
18845
|
adjustment: {
|
|
18845
18846
|
inclusive?: boolean | null | undefined;
|
|
18846
18847
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -18850,7 +18851,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18850
18851
|
};
|
|
18851
18852
|
};
|
|
18852
18853
|
referenceId: string;
|
|
18853
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18854
18854
|
}, {
|
|
18855
18855
|
reason?: string | null | undefined;
|
|
18856
18856
|
priority?: number | null | undefined;
|
|
@@ -18932,6 +18932,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18932
18932
|
target: "PAYMENT";
|
|
18933
18933
|
};
|
|
18934
18934
|
success: boolean;
|
|
18935
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18935
18936
|
adjustment: {
|
|
18936
18937
|
inclusive?: boolean | null | undefined;
|
|
18937
18938
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -18941,7 +18942,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18941
18942
|
};
|
|
18942
18943
|
};
|
|
18943
18944
|
referenceId: string;
|
|
18944
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18945
18945
|
}>>, "many">>;
|
|
18946
18946
|
option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
18947
18947
|
type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
|
|
@@ -21050,6 +21050,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21050
21050
|
target: "PAYMENT";
|
|
21051
21051
|
};
|
|
21052
21052
|
success: boolean;
|
|
21053
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21053
21054
|
adjustment: {
|
|
21054
21055
|
inclusive?: boolean | null | undefined;
|
|
21055
21056
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -21059,7 +21060,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21059
21060
|
};
|
|
21060
21061
|
};
|
|
21061
21062
|
referenceId: string;
|
|
21062
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21063
21063
|
})[];
|
|
21064
21064
|
orderAt: string;
|
|
21065
21065
|
}, {
|
|
@@ -21353,6 +21353,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21353
21353
|
target: "PAYMENT";
|
|
21354
21354
|
};
|
|
21355
21355
|
success: boolean;
|
|
21356
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21356
21357
|
adjustment: {
|
|
21357
21358
|
inclusive?: boolean | null | undefined;
|
|
21358
21359
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -21362,7 +21363,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21362
21363
|
};
|
|
21363
21364
|
};
|
|
21364
21365
|
referenceId: string;
|
|
21365
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21366
21366
|
})[] | undefined;
|
|
21367
21367
|
option: {
|
|
21368
21368
|
remark?: string | null | undefined;
|
|
@@ -44389,6 +44389,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
44389
44389
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44390
44390
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
44391
44391
|
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
44392
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
44392
44393
|
}, "strip", z.ZodTypeAny, {
|
|
44393
44394
|
unit?: string | null | undefined;
|
|
44394
44395
|
categoryName?: string | null | undefined;
|
|
@@ -44435,6 +44436,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
44435
44436
|
}[] | null | undefined;
|
|
44436
44437
|
customAttributes?: Record<string, any> | null | undefined;
|
|
44437
44438
|
subCategories?: string[] | null | undefined;
|
|
44439
|
+
shelfLife?: number | null | undefined;
|
|
44438
44440
|
code: string;
|
|
44439
44441
|
name: string;
|
|
44440
44442
|
price: {
|
|
@@ -44488,6 +44490,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
44488
44490
|
}[] | null | undefined;
|
|
44489
44491
|
customAttributes?: Record<string, any> | null | undefined;
|
|
44490
44492
|
subCategories?: string[] | null | undefined;
|
|
44493
|
+
shelfLife?: number | null | undefined;
|
|
44491
44494
|
code: string;
|
|
44492
44495
|
name: string;
|
|
44493
44496
|
price: {
|
|
@@ -45326,6 +45329,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
45326
45329
|
}[] | null | undefined;
|
|
45327
45330
|
customAttributes?: Record<string, any> | null | undefined;
|
|
45328
45331
|
subCategories?: string[] | null | undefined;
|
|
45332
|
+
shelfLife?: number | null | undefined;
|
|
45329
45333
|
code: string;
|
|
45330
45334
|
name: string;
|
|
45331
45335
|
price: {
|
|
@@ -45571,6 +45575,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
45571
45575
|
}[] | null | undefined;
|
|
45572
45576
|
customAttributes?: Record<string, any> | null | undefined;
|
|
45573
45577
|
subCategories?: string[] | null | undefined;
|
|
45578
|
+
shelfLife?: number | null | undefined;
|
|
45574
45579
|
code: string;
|
|
45575
45580
|
name: string;
|
|
45576
45581
|
price: {
|
|
@@ -46311,6 +46316,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
46311
46316
|
}[] | null | undefined;
|
|
46312
46317
|
customAttributes?: Record<string, any> | null | undefined;
|
|
46313
46318
|
subCategories?: string[] | null | undefined;
|
|
46319
|
+
shelfLife?: number | null | undefined;
|
|
46314
46320
|
code: string;
|
|
46315
46321
|
name: string;
|
|
46316
46322
|
price: {
|
|
@@ -47004,6 +47010,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
47004
47010
|
}[] | null | undefined;
|
|
47005
47011
|
customAttributes?: Record<string, any> | null | undefined;
|
|
47006
47012
|
subCategories?: string[] | null | undefined;
|
|
47013
|
+
shelfLife?: number | null | undefined;
|
|
47007
47014
|
code: string;
|
|
47008
47015
|
name: string;
|
|
47009
47016
|
price: {
|
|
@@ -47249,6 +47256,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
47249
47256
|
}[] | null | undefined;
|
|
47250
47257
|
customAttributes?: Record<string, any> | null | undefined;
|
|
47251
47258
|
subCategories?: string[] | null | undefined;
|
|
47259
|
+
shelfLife?: number | null | undefined;
|
|
47252
47260
|
code: string;
|
|
47253
47261
|
name: string;
|
|
47254
47262
|
price: {
|
|
@@ -7,6 +7,7 @@ export declare const F_ORDER_OFFLINE_PAYMENT_TYPE: z.ZodEnum<["QRPAY", "SCANPAY"
|
|
|
7
7
|
export declare const F_ORDER_E_PAYMENT_TYPE: z.ZodEnum<["SCANPAY", "QRPAY", "TERMINAL", "NFC", "TERMINAL_SCAN_PAY", "TERMINAL_QR_PAY"]>;
|
|
8
8
|
export declare const F_ORDER_DELIVERY_TYPE: z.ZodEnum<["IN_HOUSE", "FEEDME"]>;
|
|
9
9
|
export declare const F_ORDER_TYPE: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
|
|
10
|
+
export declare const F_INCOMING_ORDER_TYPE: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
|
|
10
11
|
export declare const F_ORDER_APP_FROM: z.ZodEnum<["CUSTOMER", "KIOSK", "TABLET"]>;
|
|
11
12
|
export declare const F_ORDER_PLATFORM_TYPE: z.ZodEnum<["WEB_V2_APP", "WEB_V3_APP", "KIOSK_APP", "TABLET_APP", "UNKNOWN"]>;
|
|
12
13
|
export type F_ORDER_QR_TYPE = z.infer<typeof F_ORDER_QR_TYPE>;
|
|
@@ -19,3 +20,4 @@ export type F_ORDER_TYPE = z.infer<typeof F_ORDER_TYPE>;
|
|
|
19
20
|
export type F_ORDER_APP_FROM = z.infer<typeof F_ORDER_APP_FROM>;
|
|
20
21
|
export type F_ORDER_E_PAYMENT_TYPE = z.infer<typeof F_ORDER_E_PAYMENT_TYPE>;
|
|
21
22
|
export type F_ORDER_PLATFORM_TYPE = z.infer<typeof F_ORDER_PLATFORM_TYPE>;
|
|
23
|
+
export type F_INCOMING_ORDER_TYPE = z.infer<typeof F_INCOMING_ORDER_TYPE>;
|
|
@@ -19,8 +19,8 @@ export declare const FdtoDeliverooCreateOrUpdateSettings: z.ZodObject<z.extendSh
|
|
|
19
19
|
_id?: string | undefined;
|
|
20
20
|
catalogId?: string | null | undefined;
|
|
21
21
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
22
|
-
lastSynchronize?: string | null | undefined;
|
|
23
22
|
updatedAt?: string | null | undefined;
|
|
23
|
+
lastSynchronize?: string | null | undefined;
|
|
24
24
|
menuSyncError?: string | null | undefined;
|
|
25
25
|
enable: boolean;
|
|
26
26
|
autoCloseBill: boolean;
|
|
@@ -30,8 +30,8 @@ export declare const FdtoDeliverooCreateOrUpdateSettings: z.ZodObject<z.extendSh
|
|
|
30
30
|
_id?: string | undefined;
|
|
31
31
|
catalogId?: string | null | undefined;
|
|
32
32
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
33
|
-
lastSynchronize?: string | null | undefined;
|
|
34
33
|
updatedAt?: string | null | undefined;
|
|
34
|
+
lastSynchronize?: string | null | undefined;
|
|
35
35
|
menuSyncError?: string | null | undefined;
|
|
36
36
|
enable: boolean;
|
|
37
37
|
autoCloseBill: boolean;
|
|
@@ -16,8 +16,8 @@ export declare const FdoDeliverooSettings: z.ZodObject<z.extendShape<{
|
|
|
16
16
|
_id?: string | undefined;
|
|
17
17
|
catalogId?: string | null | undefined;
|
|
18
18
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
19
|
-
lastSynchronize?: string | null | undefined;
|
|
20
19
|
updatedAt?: string | null | undefined;
|
|
20
|
+
lastSynchronize?: string | null | undefined;
|
|
21
21
|
menuSyncError?: string | null | undefined;
|
|
22
22
|
enable: boolean;
|
|
23
23
|
autoCloseBill: boolean;
|
|
@@ -27,8 +27,8 @@ export declare const FdoDeliverooSettings: z.ZodObject<z.extendShape<{
|
|
|
27
27
|
_id?: string | undefined;
|
|
28
28
|
catalogId?: string | null | undefined;
|
|
29
29
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
30
|
-
lastSynchronize?: string | null | undefined;
|
|
31
30
|
updatedAt?: string | null | undefined;
|
|
31
|
+
lastSynchronize?: string | null | undefined;
|
|
32
32
|
menuSyncError?: string | null | undefined;
|
|
33
33
|
enable: boolean;
|
|
34
34
|
autoCloseBill: boolean;
|
|
@@ -166,6 +166,22 @@ export declare const FdoExternalOrderDelivery: z.ZodObject<{
|
|
|
166
166
|
};
|
|
167
167
|
deliveryAt: string;
|
|
168
168
|
}>;
|
|
169
|
+
export declare const FdoExternalOrderDineIn: z.ZodObject<{
|
|
170
|
+
contactNumber: z.ZodString;
|
|
171
|
+
customerName: z.ZodString;
|
|
172
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
173
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
174
|
+
}, "strip", z.ZodTypeAny, {
|
|
175
|
+
pax?: number | null | undefined;
|
|
176
|
+
tableNumber?: string | null | undefined;
|
|
177
|
+
contactNumber: string;
|
|
178
|
+
customerName: string;
|
|
179
|
+
}, {
|
|
180
|
+
pax?: number | null | undefined;
|
|
181
|
+
tableNumber?: string | null | undefined;
|
|
182
|
+
contactNumber: string;
|
|
183
|
+
customerName: string;
|
|
184
|
+
}>;
|
|
169
185
|
export declare const FdoExternalOrderIntegrationInfo: z.ZodObject<{
|
|
170
186
|
partnerStoreId: z.ZodString;
|
|
171
187
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -746,6 +762,32 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
746
762
|
pickupAt: string;
|
|
747
763
|
customerName: string;
|
|
748
764
|
}>>>;
|
|
765
|
+
dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
766
|
+
contactNumber: z.ZodString;
|
|
767
|
+
customerName: z.ZodString;
|
|
768
|
+
pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
769
|
+
tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
770
|
+
}, "strip", z.ZodTypeAny, {
|
|
771
|
+
pax?: number | null | undefined;
|
|
772
|
+
tableNumber?: string | null | undefined;
|
|
773
|
+
contactNumber: string;
|
|
774
|
+
customerName: string;
|
|
775
|
+
}, {
|
|
776
|
+
pax?: number | null | undefined;
|
|
777
|
+
tableNumber?: string | null | undefined;
|
|
778
|
+
contactNumber: string;
|
|
779
|
+
customerName: string;
|
|
780
|
+
}>>>;
|
|
781
|
+
driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
782
|
+
contactNumber: z.ZodString;
|
|
783
|
+
licensePlate: z.ZodString;
|
|
784
|
+
}, "strip", z.ZodTypeAny, {
|
|
785
|
+
licensePlate: string;
|
|
786
|
+
contactNumber: string;
|
|
787
|
+
}, {
|
|
788
|
+
licensePlate: string;
|
|
789
|
+
contactNumber: string;
|
|
790
|
+
}>>>;
|
|
749
791
|
integrationInfo: z.ZodObject<{
|
|
750
792
|
partnerStoreId: z.ZodString;
|
|
751
793
|
partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
|
|
@@ -1140,7 +1182,17 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
1140
1182
|
};
|
|
1141
1183
|
deliveryAt: string;
|
|
1142
1184
|
} | null | undefined;
|
|
1185
|
+
dineIn?: {
|
|
1186
|
+
pax?: number | null | undefined;
|
|
1187
|
+
tableNumber?: string | null | undefined;
|
|
1188
|
+
contactNumber: string;
|
|
1189
|
+
customerName: string;
|
|
1190
|
+
} | null | undefined;
|
|
1143
1191
|
billId?: string | null | undefined;
|
|
1192
|
+
driveThru?: {
|
|
1193
|
+
licensePlate: string;
|
|
1194
|
+
contactNumber: string;
|
|
1195
|
+
} | null | undefined;
|
|
1144
1196
|
eInvoiceUrl?: string | null | undefined;
|
|
1145
1197
|
_id: string;
|
|
1146
1198
|
price: {
|
|
@@ -1267,7 +1319,17 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
1267
1319
|
};
|
|
1268
1320
|
deliveryAt: string;
|
|
1269
1321
|
} | null | undefined;
|
|
1322
|
+
dineIn?: {
|
|
1323
|
+
pax?: number | null | undefined;
|
|
1324
|
+
tableNumber?: string | null | undefined;
|
|
1325
|
+
contactNumber: string;
|
|
1326
|
+
customerName: string;
|
|
1327
|
+
} | null | undefined;
|
|
1270
1328
|
billId?: string | null | undefined;
|
|
1329
|
+
driveThru?: {
|
|
1330
|
+
licensePlate: string;
|
|
1331
|
+
contactNumber: string;
|
|
1332
|
+
} | null | undefined;
|
|
1271
1333
|
eInvoiceUrl?: string | null | undefined;
|
|
1272
1334
|
_id: string;
|
|
1273
1335
|
price: {
|