@feedmepos/mf-order-setting 0.0.31 → 0.0.32
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-D2w5MMCg.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CldPl8BW.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BwxGSbuI.js} +2 -2
- package/dist/{KioskSettingView-BsxOiUdj.js → KioskSettingView-CUMAS8OG.js} +1 -1
- package/dist/{KioskView-DBnQe7Mp.js → KioskView-NetckXQx.js} +4 -4
- package/dist/{OrderSettingsView-BvDtRpI_.js → OrderSettingsView-CL0o1fHq.js} +5336 -5287
- package/dist/{app-G3iTmEHp.js → app-DnvFFLBj.js} +4 -4
- package/dist/app.js +1 -1
- package/dist/common/convertor/index.d.ts +2 -0
- package/dist/{dayjs.min-ChzYZzP1.js → dayjs.min-BAx2Uba9.js} +1 -1
- 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-DuneL3VN.js} +2 -2
- 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 +1 -0
- 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 +8 -0
- package/dist/package/entity/order/order.dto.d.ts +24 -16
- 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 +1 -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/dist/{queue.do-BtfSllT8.js → queue.do-B1npBXsB.js} +20160 -19771
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const F_ORDER_PLATFORM_ACTION: z.ZodEnum<["SYNC_MENU", "UPDATE_ORDER", "GET_OR_UPDATE_SETTING"]>;
|
|
3
|
-
export declare const F_ORDER_PLATFORM: z.ZodEnum<["FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "FEEDME", "IN_HOUSE", "ZUS"]>;
|
|
3
|
+
export declare const F_ORDER_PLATFORM: z.ZodEnum<["FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS"]>;
|
|
4
4
|
export declare const F_MENU_SYNCING_STATUS: z.ZodEnum<["SUCCESS", "FAILED", "PROCESSING"]>;
|
|
5
5
|
export declare const F_SF_MENU_SYNCING_STATUS: z.ZodNativeEnum<{
|
|
6
6
|
readonly SUCCESS: 0;
|
|
@@ -15,13 +15,16 @@ export declare const SFPromotion: z.ZodObject<{
|
|
|
15
15
|
item_discount_amount: z.ZodNumber;
|
|
16
16
|
item_voucher_amount: z.ZodNumber;
|
|
17
17
|
merchant_voucher_subsidy_amount: z.ZodNumber;
|
|
18
|
+
merchant_item_subsidy_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
18
19
|
}, "strip", z.ZodTypeAny, {
|
|
20
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
19
21
|
shipping_discount_amount: number;
|
|
20
22
|
shipping_voucher_amount: number;
|
|
21
23
|
item_discount_amount: number;
|
|
22
24
|
item_voucher_amount: number;
|
|
23
25
|
merchant_voucher_subsidy_amount: number;
|
|
24
26
|
}, {
|
|
27
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
25
28
|
shipping_discount_amount: number;
|
|
26
29
|
shipping_voucher_amount: number;
|
|
27
30
|
item_discount_amount: number;
|
|
@@ -41,13 +44,16 @@ export declare const SFOrderAmount: z.ZodObject<{
|
|
|
41
44
|
item_discount_amount: z.ZodNumber;
|
|
42
45
|
item_voucher_amount: z.ZodNumber;
|
|
43
46
|
merchant_voucher_subsidy_amount: z.ZodNumber;
|
|
47
|
+
merchant_item_subsidy_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
44
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
45
50
|
shipping_discount_amount: number;
|
|
46
51
|
shipping_voucher_amount: number;
|
|
47
52
|
item_discount_amount: number;
|
|
48
53
|
item_voucher_amount: number;
|
|
49
54
|
merchant_voucher_subsidy_amount: number;
|
|
50
55
|
}, {
|
|
56
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
51
57
|
shipping_discount_amount: number;
|
|
52
58
|
shipping_voucher_amount: number;
|
|
53
59
|
item_discount_amount: number;
|
|
@@ -58,6 +64,7 @@ export declare const SFOrderAmount: z.ZodObject<{
|
|
|
58
64
|
tax_amount: z.ZodNumber;
|
|
59
65
|
total_amount: z.ZodNumber;
|
|
60
66
|
merchant_surcharge_fee: z.ZodNumber;
|
|
67
|
+
unit_list_price_subtotal: z.ZodNumber;
|
|
61
68
|
}, "strip", z.ZodTypeAny, {
|
|
62
69
|
subtotal: number;
|
|
63
70
|
merchant_service_fee: number;
|
|
@@ -67,6 +74,7 @@ export declare const SFOrderAmount: z.ZodObject<{
|
|
|
67
74
|
shipping_surge_fee: number;
|
|
68
75
|
small_order_fee: number;
|
|
69
76
|
promotion: {
|
|
77
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
70
78
|
shipping_discount_amount: number;
|
|
71
79
|
shipping_voucher_amount: number;
|
|
72
80
|
item_discount_amount: number;
|
|
@@ -76,6 +84,7 @@ export declare const SFOrderAmount: z.ZodObject<{
|
|
|
76
84
|
tax_amount: number;
|
|
77
85
|
total_amount: number;
|
|
78
86
|
merchant_surcharge_fee: number;
|
|
87
|
+
unit_list_price_subtotal: number;
|
|
79
88
|
}, {
|
|
80
89
|
subtotal: number;
|
|
81
90
|
merchant_service_fee: number;
|
|
@@ -85,6 +94,7 @@ export declare const SFOrderAmount: z.ZodObject<{
|
|
|
85
94
|
shipping_surge_fee: number;
|
|
86
95
|
small_order_fee: number;
|
|
87
96
|
promotion: {
|
|
97
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
88
98
|
shipping_discount_amount: number;
|
|
89
99
|
shipping_voucher_amount: number;
|
|
90
100
|
item_discount_amount: number;
|
|
@@ -94,6 +104,7 @@ export declare const SFOrderAmount: z.ZodObject<{
|
|
|
94
104
|
tax_amount: number;
|
|
95
105
|
total_amount: number;
|
|
96
106
|
merchant_surcharge_fee: number;
|
|
107
|
+
unit_list_price_subtotal: number;
|
|
97
108
|
}>;
|
|
98
109
|
export declare const SFOrderDish: z.ZodObject<{
|
|
99
110
|
id: z.ZodString;
|
|
@@ -506,13 +517,16 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
506
517
|
item_discount_amount: z.ZodNumber;
|
|
507
518
|
item_voucher_amount: z.ZodNumber;
|
|
508
519
|
merchant_voucher_subsidy_amount: z.ZodNumber;
|
|
520
|
+
merchant_item_subsidy_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
509
521
|
}, "strip", z.ZodTypeAny, {
|
|
522
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
510
523
|
shipping_discount_amount: number;
|
|
511
524
|
shipping_voucher_amount: number;
|
|
512
525
|
item_discount_amount: number;
|
|
513
526
|
item_voucher_amount: number;
|
|
514
527
|
merchant_voucher_subsidy_amount: number;
|
|
515
528
|
}, {
|
|
529
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
516
530
|
shipping_discount_amount: number;
|
|
517
531
|
shipping_voucher_amount: number;
|
|
518
532
|
item_discount_amount: number;
|
|
@@ -523,6 +537,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
523
537
|
tax_amount: z.ZodNumber;
|
|
524
538
|
total_amount: z.ZodNumber;
|
|
525
539
|
merchant_surcharge_fee: z.ZodNumber;
|
|
540
|
+
unit_list_price_subtotal: z.ZodNumber;
|
|
526
541
|
}, "strip", z.ZodTypeAny, {
|
|
527
542
|
subtotal: number;
|
|
528
543
|
merchant_service_fee: number;
|
|
@@ -532,6 +547,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
532
547
|
shipping_surge_fee: number;
|
|
533
548
|
small_order_fee: number;
|
|
534
549
|
promotion: {
|
|
550
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
535
551
|
shipping_discount_amount: number;
|
|
536
552
|
shipping_voucher_amount: number;
|
|
537
553
|
item_discount_amount: number;
|
|
@@ -541,6 +557,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
541
557
|
tax_amount: number;
|
|
542
558
|
total_amount: number;
|
|
543
559
|
merchant_surcharge_fee: number;
|
|
560
|
+
unit_list_price_subtotal: number;
|
|
544
561
|
}, {
|
|
545
562
|
subtotal: number;
|
|
546
563
|
merchant_service_fee: number;
|
|
@@ -550,6 +567,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
550
567
|
shipping_surge_fee: number;
|
|
551
568
|
small_order_fee: number;
|
|
552
569
|
promotion: {
|
|
570
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
553
571
|
shipping_discount_amount: number;
|
|
554
572
|
shipping_voucher_amount: number;
|
|
555
573
|
item_discount_amount: number;
|
|
@@ -559,6 +577,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
559
577
|
tax_amount: number;
|
|
560
578
|
total_amount: number;
|
|
561
579
|
merchant_surcharge_fee: number;
|
|
580
|
+
unit_list_price_subtotal: number;
|
|
562
581
|
}>;
|
|
563
582
|
items: z.ZodArray<z.ZodObject<{
|
|
564
583
|
detail: z.ZodObject<{
|
|
@@ -794,6 +813,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
794
813
|
shipping_surge_fee: number;
|
|
795
814
|
small_order_fee: number;
|
|
796
815
|
promotion: {
|
|
816
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
797
817
|
shipping_discount_amount: number;
|
|
798
818
|
shipping_voucher_amount: number;
|
|
799
819
|
item_discount_amount: number;
|
|
@@ -803,6 +823,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
803
823
|
tax_amount: number;
|
|
804
824
|
total_amount: number;
|
|
805
825
|
merchant_surcharge_fee: number;
|
|
826
|
+
unit_list_price_subtotal: number;
|
|
806
827
|
};
|
|
807
828
|
currency: "MYR";
|
|
808
829
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -867,6 +888,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
867
888
|
shipping_surge_fee: number;
|
|
868
889
|
small_order_fee: number;
|
|
869
890
|
promotion: {
|
|
891
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
870
892
|
shipping_discount_amount: number;
|
|
871
893
|
shipping_voucher_amount: number;
|
|
872
894
|
item_discount_amount: number;
|
|
@@ -876,6 +898,7 @@ export declare const SFOrder: z.ZodObject<{
|
|
|
876
898
|
tax_amount: number;
|
|
877
899
|
total_amount: number;
|
|
878
900
|
merchant_surcharge_fee: number;
|
|
901
|
+
unit_list_price_subtotal: number;
|
|
879
902
|
};
|
|
880
903
|
currency: "MYR";
|
|
881
904
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -948,13 +971,16 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
948
971
|
item_discount_amount: z.ZodNumber;
|
|
949
972
|
item_voucher_amount: z.ZodNumber;
|
|
950
973
|
merchant_voucher_subsidy_amount: z.ZodNumber;
|
|
974
|
+
merchant_item_subsidy_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
951
975
|
}, "strip", z.ZodTypeAny, {
|
|
976
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
952
977
|
shipping_discount_amount: number;
|
|
953
978
|
shipping_voucher_amount: number;
|
|
954
979
|
item_discount_amount: number;
|
|
955
980
|
item_voucher_amount: number;
|
|
956
981
|
merchant_voucher_subsidy_amount: number;
|
|
957
982
|
}, {
|
|
983
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
958
984
|
shipping_discount_amount: number;
|
|
959
985
|
shipping_voucher_amount: number;
|
|
960
986
|
item_discount_amount: number;
|
|
@@ -965,6 +991,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
965
991
|
tax_amount: z.ZodNumber;
|
|
966
992
|
total_amount: z.ZodNumber;
|
|
967
993
|
merchant_surcharge_fee: z.ZodNumber;
|
|
994
|
+
unit_list_price_subtotal: z.ZodNumber;
|
|
968
995
|
}, "strip", z.ZodTypeAny, {
|
|
969
996
|
subtotal: number;
|
|
970
997
|
merchant_service_fee: number;
|
|
@@ -974,6 +1001,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
974
1001
|
shipping_surge_fee: number;
|
|
975
1002
|
small_order_fee: number;
|
|
976
1003
|
promotion: {
|
|
1004
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
977
1005
|
shipping_discount_amount: number;
|
|
978
1006
|
shipping_voucher_amount: number;
|
|
979
1007
|
item_discount_amount: number;
|
|
@@ -983,6 +1011,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
983
1011
|
tax_amount: number;
|
|
984
1012
|
total_amount: number;
|
|
985
1013
|
merchant_surcharge_fee: number;
|
|
1014
|
+
unit_list_price_subtotal: number;
|
|
986
1015
|
}, {
|
|
987
1016
|
subtotal: number;
|
|
988
1017
|
merchant_service_fee: number;
|
|
@@ -992,6 +1021,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
992
1021
|
shipping_surge_fee: number;
|
|
993
1022
|
small_order_fee: number;
|
|
994
1023
|
promotion: {
|
|
1024
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
995
1025
|
shipping_discount_amount: number;
|
|
996
1026
|
shipping_voucher_amount: number;
|
|
997
1027
|
item_discount_amount: number;
|
|
@@ -1001,6 +1031,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1001
1031
|
tax_amount: number;
|
|
1002
1032
|
total_amount: number;
|
|
1003
1033
|
merchant_surcharge_fee: number;
|
|
1034
|
+
unit_list_price_subtotal: number;
|
|
1004
1035
|
}>;
|
|
1005
1036
|
items: z.ZodArray<z.ZodObject<{
|
|
1006
1037
|
detail: z.ZodObject<{
|
|
@@ -1236,6 +1267,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1236
1267
|
shipping_surge_fee: number;
|
|
1237
1268
|
small_order_fee: number;
|
|
1238
1269
|
promotion: {
|
|
1270
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1239
1271
|
shipping_discount_amount: number;
|
|
1240
1272
|
shipping_voucher_amount: number;
|
|
1241
1273
|
item_discount_amount: number;
|
|
@@ -1245,6 +1277,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1245
1277
|
tax_amount: number;
|
|
1246
1278
|
total_amount: number;
|
|
1247
1279
|
merchant_surcharge_fee: number;
|
|
1280
|
+
unit_list_price_subtotal: number;
|
|
1248
1281
|
};
|
|
1249
1282
|
currency: "MYR";
|
|
1250
1283
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -1309,6 +1342,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1309
1342
|
shipping_surge_fee: number;
|
|
1310
1343
|
small_order_fee: number;
|
|
1311
1344
|
promotion: {
|
|
1345
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1312
1346
|
shipping_discount_amount: number;
|
|
1313
1347
|
shipping_voucher_amount: number;
|
|
1314
1348
|
item_discount_amount: number;
|
|
@@ -1318,6 +1352,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1318
1352
|
tax_amount: number;
|
|
1319
1353
|
total_amount: number;
|
|
1320
1354
|
merchant_surcharge_fee: number;
|
|
1355
|
+
unit_list_price_subtotal: number;
|
|
1321
1356
|
};
|
|
1322
1357
|
currency: "MYR";
|
|
1323
1358
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -1389,6 +1424,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1389
1424
|
shipping_surge_fee: number;
|
|
1390
1425
|
small_order_fee: number;
|
|
1391
1426
|
promotion: {
|
|
1427
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1392
1428
|
shipping_discount_amount: number;
|
|
1393
1429
|
shipping_voucher_amount: number;
|
|
1394
1430
|
item_discount_amount: number;
|
|
@@ -1398,6 +1434,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1398
1434
|
tax_amount: number;
|
|
1399
1435
|
total_amount: number;
|
|
1400
1436
|
merchant_surcharge_fee: number;
|
|
1437
|
+
unit_list_price_subtotal: number;
|
|
1401
1438
|
};
|
|
1402
1439
|
currency: "MYR";
|
|
1403
1440
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -1469,6 +1506,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1469
1506
|
shipping_surge_fee: number;
|
|
1470
1507
|
small_order_fee: number;
|
|
1471
1508
|
promotion: {
|
|
1509
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1472
1510
|
shipping_discount_amount: number;
|
|
1473
1511
|
shipping_voucher_amount: number;
|
|
1474
1512
|
item_discount_amount: number;
|
|
@@ -1478,6 +1516,7 @@ export declare const FdoShopeeFoodOrder: z.ZodObject<{
|
|
|
1478
1516
|
tax_amount: number;
|
|
1479
1517
|
total_amount: number;
|
|
1480
1518
|
merchant_surcharge_fee: number;
|
|
1519
|
+
unit_list_price_subtotal: number;
|
|
1481
1520
|
};
|
|
1482
1521
|
currency: "MYR";
|
|
1483
1522
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -1551,13 +1590,16 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1551
1590
|
item_discount_amount: z.ZodNumber;
|
|
1552
1591
|
item_voucher_amount: z.ZodNumber;
|
|
1553
1592
|
merchant_voucher_subsidy_amount: z.ZodNumber;
|
|
1593
|
+
merchant_item_subsidy_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1554
1594
|
}, "strip", z.ZodTypeAny, {
|
|
1595
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1555
1596
|
shipping_discount_amount: number;
|
|
1556
1597
|
shipping_voucher_amount: number;
|
|
1557
1598
|
item_discount_amount: number;
|
|
1558
1599
|
item_voucher_amount: number;
|
|
1559
1600
|
merchant_voucher_subsidy_amount: number;
|
|
1560
1601
|
}, {
|
|
1602
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1561
1603
|
shipping_discount_amount: number;
|
|
1562
1604
|
shipping_voucher_amount: number;
|
|
1563
1605
|
item_discount_amount: number;
|
|
@@ -1568,6 +1610,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1568
1610
|
tax_amount: z.ZodNumber;
|
|
1569
1611
|
total_amount: z.ZodNumber;
|
|
1570
1612
|
merchant_surcharge_fee: z.ZodNumber;
|
|
1613
|
+
unit_list_price_subtotal: z.ZodNumber;
|
|
1571
1614
|
}, "strip", z.ZodTypeAny, {
|
|
1572
1615
|
subtotal: number;
|
|
1573
1616
|
merchant_service_fee: number;
|
|
@@ -1577,6 +1620,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1577
1620
|
shipping_surge_fee: number;
|
|
1578
1621
|
small_order_fee: number;
|
|
1579
1622
|
promotion: {
|
|
1623
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1580
1624
|
shipping_discount_amount: number;
|
|
1581
1625
|
shipping_voucher_amount: number;
|
|
1582
1626
|
item_discount_amount: number;
|
|
@@ -1586,6 +1630,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1586
1630
|
tax_amount: number;
|
|
1587
1631
|
total_amount: number;
|
|
1588
1632
|
merchant_surcharge_fee: number;
|
|
1633
|
+
unit_list_price_subtotal: number;
|
|
1589
1634
|
}, {
|
|
1590
1635
|
subtotal: number;
|
|
1591
1636
|
merchant_service_fee: number;
|
|
@@ -1595,6 +1640,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1595
1640
|
shipping_surge_fee: number;
|
|
1596
1641
|
small_order_fee: number;
|
|
1597
1642
|
promotion: {
|
|
1643
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1598
1644
|
shipping_discount_amount: number;
|
|
1599
1645
|
shipping_voucher_amount: number;
|
|
1600
1646
|
item_discount_amount: number;
|
|
@@ -1604,6 +1650,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1604
1650
|
tax_amount: number;
|
|
1605
1651
|
total_amount: number;
|
|
1606
1652
|
merchant_surcharge_fee: number;
|
|
1653
|
+
unit_list_price_subtotal: number;
|
|
1607
1654
|
}>;
|
|
1608
1655
|
items: z.ZodArray<z.ZodObject<{
|
|
1609
1656
|
detail: z.ZodObject<{
|
|
@@ -1839,6 +1886,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1839
1886
|
shipping_surge_fee: number;
|
|
1840
1887
|
small_order_fee: number;
|
|
1841
1888
|
promotion: {
|
|
1889
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1842
1890
|
shipping_discount_amount: number;
|
|
1843
1891
|
shipping_voucher_amount: number;
|
|
1844
1892
|
item_discount_amount: number;
|
|
@@ -1848,6 +1896,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1848
1896
|
tax_amount: number;
|
|
1849
1897
|
total_amount: number;
|
|
1850
1898
|
merchant_surcharge_fee: number;
|
|
1899
|
+
unit_list_price_subtotal: number;
|
|
1851
1900
|
};
|
|
1852
1901
|
currency: "MYR";
|
|
1853
1902
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -1912,6 +1961,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1912
1961
|
shipping_surge_fee: number;
|
|
1913
1962
|
small_order_fee: number;
|
|
1914
1963
|
promotion: {
|
|
1964
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1915
1965
|
shipping_discount_amount: number;
|
|
1916
1966
|
shipping_voucher_amount: number;
|
|
1917
1967
|
item_discount_amount: number;
|
|
@@ -1921,6 +1971,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1921
1971
|
tax_amount: number;
|
|
1922
1972
|
total_amount: number;
|
|
1923
1973
|
merchant_surcharge_fee: number;
|
|
1974
|
+
unit_list_price_subtotal: number;
|
|
1924
1975
|
};
|
|
1925
1976
|
currency: "MYR";
|
|
1926
1977
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -2420,7 +2471,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2420
2471
|
postcode: string;
|
|
2421
2472
|
}>;
|
|
2422
2473
|
phoneNo: z.ZodString;
|
|
2423
|
-
email: z.ZodString
|
|
2474
|
+
email: z.ZodDefault<z.ZodString>;
|
|
2424
2475
|
regNo: z.ZodString;
|
|
2425
2476
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2426
2477
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2787,6 +2838,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2787
2838
|
}, {
|
|
2788
2839
|
code?: string | null | undefined;
|
|
2789
2840
|
url?: string | null | undefined;
|
|
2841
|
+
email?: string | undefined;
|
|
2790
2842
|
description?: string | null | undefined;
|
|
2791
2843
|
_id?: string | null | undefined;
|
|
2792
2844
|
legalName?: string | null | undefined;
|
|
@@ -2857,7 +2909,6 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2857
2909
|
city: string;
|
|
2858
2910
|
postcode: string;
|
|
2859
2911
|
};
|
|
2860
|
-
email: string;
|
|
2861
2912
|
phoneNo: string;
|
|
2862
2913
|
regNo: string;
|
|
2863
2914
|
}>;
|
|
@@ -4726,6 +4777,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4726
4777
|
profile: {
|
|
4727
4778
|
code?: string | null | undefined;
|
|
4728
4779
|
url?: string | null | undefined;
|
|
4780
|
+
email?: string | undefined;
|
|
4729
4781
|
description?: string | null | undefined;
|
|
4730
4782
|
_id?: string | null | undefined;
|
|
4731
4783
|
legalName?: string | null | undefined;
|
|
@@ -4796,7 +4848,6 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4796
4848
|
city: string;
|
|
4797
4849
|
postcode: string;
|
|
4798
4850
|
};
|
|
4799
|
-
email: string;
|
|
4800
4851
|
phoneNo: string;
|
|
4801
4852
|
regNo: string;
|
|
4802
4853
|
};
|
|
@@ -5215,6 +5266,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5215
5266
|
shipping_surge_fee: number;
|
|
5216
5267
|
small_order_fee: number;
|
|
5217
5268
|
promotion: {
|
|
5269
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
5218
5270
|
shipping_discount_amount: number;
|
|
5219
5271
|
shipping_voucher_amount: number;
|
|
5220
5272
|
item_discount_amount: number;
|
|
@@ -5224,6 +5276,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5224
5276
|
tax_amount: number;
|
|
5225
5277
|
total_amount: number;
|
|
5226
5278
|
merchant_surcharge_fee: number;
|
|
5279
|
+
unit_list_price_subtotal: number;
|
|
5227
5280
|
};
|
|
5228
5281
|
currency: "MYR";
|
|
5229
5282
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -5567,6 +5620,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5567
5620
|
profile: {
|
|
5568
5621
|
code?: string | null | undefined;
|
|
5569
5622
|
url?: string | null | undefined;
|
|
5623
|
+
email?: string | undefined;
|
|
5570
5624
|
description?: string | null | undefined;
|
|
5571
5625
|
_id?: string | null | undefined;
|
|
5572
5626
|
legalName?: string | null | undefined;
|
|
@@ -5637,7 +5691,6 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5637
5691
|
city: string;
|
|
5638
5692
|
postcode: string;
|
|
5639
5693
|
};
|
|
5640
|
-
email: string;
|
|
5641
5694
|
phoneNo: string;
|
|
5642
5695
|
regNo: string;
|
|
5643
5696
|
};
|
|
@@ -5675,6 +5728,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5675
5728
|
shipping_surge_fee: number;
|
|
5676
5729
|
small_order_fee: number;
|
|
5677
5730
|
promotion: {
|
|
5731
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
5678
5732
|
shipping_discount_amount: number;
|
|
5679
5733
|
shipping_voucher_amount: number;
|
|
5680
5734
|
item_discount_amount: number;
|
|
@@ -5684,6 +5738,7 @@ export declare const FdoShopeeFoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5684
5738
|
tax_amount: number;
|
|
5685
5739
|
total_amount: number;
|
|
5686
5740
|
merchant_surcharge_fee: number;
|
|
5741
|
+
unit_list_price_subtotal: number;
|
|
5687
5742
|
};
|
|
5688
5743
|
currency: "MYR";
|
|
5689
5744
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -92,13 +92,16 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
92
92
|
item_discount_amount: z.ZodNumber;
|
|
93
93
|
item_voucher_amount: z.ZodNumber;
|
|
94
94
|
merchant_voucher_subsidy_amount: z.ZodNumber;
|
|
95
|
+
merchant_item_subsidy_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
95
96
|
}, "strip", z.ZodTypeAny, {
|
|
97
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
96
98
|
shipping_discount_amount: number;
|
|
97
99
|
shipping_voucher_amount: number;
|
|
98
100
|
item_discount_amount: number;
|
|
99
101
|
item_voucher_amount: number;
|
|
100
102
|
merchant_voucher_subsidy_amount: number;
|
|
101
103
|
}, {
|
|
104
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
102
105
|
shipping_discount_amount: number;
|
|
103
106
|
shipping_voucher_amount: number;
|
|
104
107
|
item_discount_amount: number;
|
|
@@ -109,6 +112,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
109
112
|
tax_amount: z.ZodNumber;
|
|
110
113
|
total_amount: z.ZodNumber;
|
|
111
114
|
merchant_surcharge_fee: z.ZodNumber;
|
|
115
|
+
unit_list_price_subtotal: z.ZodNumber;
|
|
112
116
|
}, "strip", z.ZodTypeAny, {
|
|
113
117
|
subtotal: number;
|
|
114
118
|
merchant_service_fee: number;
|
|
@@ -118,6 +122,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
118
122
|
shipping_surge_fee: number;
|
|
119
123
|
small_order_fee: number;
|
|
120
124
|
promotion: {
|
|
125
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
121
126
|
shipping_discount_amount: number;
|
|
122
127
|
shipping_voucher_amount: number;
|
|
123
128
|
item_discount_amount: number;
|
|
@@ -127,6 +132,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
127
132
|
tax_amount: number;
|
|
128
133
|
total_amount: number;
|
|
129
134
|
merchant_surcharge_fee: number;
|
|
135
|
+
unit_list_price_subtotal: number;
|
|
130
136
|
}, {
|
|
131
137
|
subtotal: number;
|
|
132
138
|
merchant_service_fee: number;
|
|
@@ -136,6 +142,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
136
142
|
shipping_surge_fee: number;
|
|
137
143
|
small_order_fee: number;
|
|
138
144
|
promotion: {
|
|
145
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
139
146
|
shipping_discount_amount: number;
|
|
140
147
|
shipping_voucher_amount: number;
|
|
141
148
|
item_discount_amount: number;
|
|
@@ -145,6 +152,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
145
152
|
tax_amount: number;
|
|
146
153
|
total_amount: number;
|
|
147
154
|
merchant_surcharge_fee: number;
|
|
155
|
+
unit_list_price_subtotal: number;
|
|
148
156
|
}>;
|
|
149
157
|
items: z.ZodArray<z.ZodObject<{
|
|
150
158
|
detail: z.ZodObject<{
|
|
@@ -380,6 +388,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
380
388
|
shipping_surge_fee: number;
|
|
381
389
|
small_order_fee: number;
|
|
382
390
|
promotion: {
|
|
391
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
383
392
|
shipping_discount_amount: number;
|
|
384
393
|
shipping_voucher_amount: number;
|
|
385
394
|
item_discount_amount: number;
|
|
@@ -389,6 +398,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
389
398
|
tax_amount: number;
|
|
390
399
|
total_amount: number;
|
|
391
400
|
merchant_surcharge_fee: number;
|
|
401
|
+
unit_list_price_subtotal: number;
|
|
392
402
|
};
|
|
393
403
|
currency: "MYR";
|
|
394
404
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -453,6 +463,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
453
463
|
shipping_surge_fee: number;
|
|
454
464
|
small_order_fee: number;
|
|
455
465
|
promotion: {
|
|
466
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
456
467
|
shipping_discount_amount: number;
|
|
457
468
|
shipping_voucher_amount: number;
|
|
458
469
|
item_discount_amount: number;
|
|
@@ -462,6 +473,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
462
473
|
tax_amount: number;
|
|
463
474
|
total_amount: number;
|
|
464
475
|
merchant_surcharge_fee: number;
|
|
476
|
+
unit_list_price_subtotal: number;
|
|
465
477
|
};
|
|
466
478
|
currency: "MYR";
|
|
467
479
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -528,6 +540,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
528
540
|
shipping_surge_fee: number;
|
|
529
541
|
small_order_fee: number;
|
|
530
542
|
promotion: {
|
|
543
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
531
544
|
shipping_discount_amount: number;
|
|
532
545
|
shipping_voucher_amount: number;
|
|
533
546
|
item_discount_amount: number;
|
|
@@ -537,6 +550,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
537
550
|
tax_amount: number;
|
|
538
551
|
total_amount: number;
|
|
539
552
|
merchant_surcharge_fee: number;
|
|
553
|
+
unit_list_price_subtotal: number;
|
|
540
554
|
};
|
|
541
555
|
currency: "MYR";
|
|
542
556
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -605,6 +619,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
605
619
|
shipping_surge_fee: number;
|
|
606
620
|
small_order_fee: number;
|
|
607
621
|
promotion: {
|
|
622
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
608
623
|
shipping_discount_amount: number;
|
|
609
624
|
shipping_voucher_amount: number;
|
|
610
625
|
item_discount_amount: number;
|
|
@@ -614,6 +629,7 @@ export declare const FdtoShopeefoodGetOrderRes: z.ZodObject<{
|
|
|
614
629
|
tax_amount: number;
|
|
615
630
|
total_amount: number;
|
|
616
631
|
merchant_surcharge_fee: number;
|
|
632
|
+
unit_list_price_subtotal: number;
|
|
617
633
|
};
|
|
618
634
|
currency: "MYR";
|
|
619
635
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -703,13 +719,16 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
703
719
|
item_discount_amount: z.ZodNumber;
|
|
704
720
|
item_voucher_amount: z.ZodNumber;
|
|
705
721
|
merchant_voucher_subsidy_amount: z.ZodNumber;
|
|
722
|
+
merchant_item_subsidy_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
706
723
|
}, "strip", z.ZodTypeAny, {
|
|
724
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
707
725
|
shipping_discount_amount: number;
|
|
708
726
|
shipping_voucher_amount: number;
|
|
709
727
|
item_discount_amount: number;
|
|
710
728
|
item_voucher_amount: number;
|
|
711
729
|
merchant_voucher_subsidy_amount: number;
|
|
712
730
|
}, {
|
|
731
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
713
732
|
shipping_discount_amount: number;
|
|
714
733
|
shipping_voucher_amount: number;
|
|
715
734
|
item_discount_amount: number;
|
|
@@ -720,6 +739,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
720
739
|
tax_amount: z.ZodNumber;
|
|
721
740
|
total_amount: z.ZodNumber;
|
|
722
741
|
merchant_surcharge_fee: z.ZodNumber;
|
|
742
|
+
unit_list_price_subtotal: z.ZodNumber;
|
|
723
743
|
}, "strip", z.ZodTypeAny, {
|
|
724
744
|
subtotal: number;
|
|
725
745
|
merchant_service_fee: number;
|
|
@@ -729,6 +749,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
729
749
|
shipping_surge_fee: number;
|
|
730
750
|
small_order_fee: number;
|
|
731
751
|
promotion: {
|
|
752
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
732
753
|
shipping_discount_amount: number;
|
|
733
754
|
shipping_voucher_amount: number;
|
|
734
755
|
item_discount_amount: number;
|
|
@@ -738,6 +759,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
738
759
|
tax_amount: number;
|
|
739
760
|
total_amount: number;
|
|
740
761
|
merchant_surcharge_fee: number;
|
|
762
|
+
unit_list_price_subtotal: number;
|
|
741
763
|
}, {
|
|
742
764
|
subtotal: number;
|
|
743
765
|
merchant_service_fee: number;
|
|
@@ -747,6 +769,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
747
769
|
shipping_surge_fee: number;
|
|
748
770
|
small_order_fee: number;
|
|
749
771
|
promotion: {
|
|
772
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
750
773
|
shipping_discount_amount: number;
|
|
751
774
|
shipping_voucher_amount: number;
|
|
752
775
|
item_discount_amount: number;
|
|
@@ -756,6 +779,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
756
779
|
tax_amount: number;
|
|
757
780
|
total_amount: number;
|
|
758
781
|
merchant_surcharge_fee: number;
|
|
782
|
+
unit_list_price_subtotal: number;
|
|
759
783
|
}>;
|
|
760
784
|
items: z.ZodArray<z.ZodObject<{
|
|
761
785
|
detail: z.ZodObject<{
|
|
@@ -991,6 +1015,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
991
1015
|
shipping_surge_fee: number;
|
|
992
1016
|
small_order_fee: number;
|
|
993
1017
|
promotion: {
|
|
1018
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
994
1019
|
shipping_discount_amount: number;
|
|
995
1020
|
shipping_voucher_amount: number;
|
|
996
1021
|
item_discount_amount: number;
|
|
@@ -1000,6 +1025,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
1000
1025
|
tax_amount: number;
|
|
1001
1026
|
total_amount: number;
|
|
1002
1027
|
merchant_surcharge_fee: number;
|
|
1028
|
+
unit_list_price_subtotal: number;
|
|
1003
1029
|
};
|
|
1004
1030
|
currency: "MYR";
|
|
1005
1031
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -1064,6 +1090,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
1064
1090
|
shipping_surge_fee: number;
|
|
1065
1091
|
small_order_fee: number;
|
|
1066
1092
|
promotion: {
|
|
1093
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1067
1094
|
shipping_discount_amount: number;
|
|
1068
1095
|
shipping_voucher_amount: number;
|
|
1069
1096
|
item_discount_amount: number;
|
|
@@ -1073,6 +1100,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
1073
1100
|
tax_amount: number;
|
|
1074
1101
|
total_amount: number;
|
|
1075
1102
|
merchant_surcharge_fee: number;
|
|
1103
|
+
unit_list_price_subtotal: number;
|
|
1076
1104
|
};
|
|
1077
1105
|
currency: "MYR";
|
|
1078
1106
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -1139,6 +1167,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
1139
1167
|
shipping_surge_fee: number;
|
|
1140
1168
|
small_order_fee: number;
|
|
1141
1169
|
promotion: {
|
|
1170
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1142
1171
|
shipping_discount_amount: number;
|
|
1143
1172
|
shipping_voucher_amount: number;
|
|
1144
1173
|
item_discount_amount: number;
|
|
@@ -1148,6 +1177,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
1148
1177
|
tax_amount: number;
|
|
1149
1178
|
total_amount: number;
|
|
1150
1179
|
merchant_surcharge_fee: number;
|
|
1180
|
+
unit_list_price_subtotal: number;
|
|
1151
1181
|
};
|
|
1152
1182
|
currency: "MYR";
|
|
1153
1183
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|
|
@@ -1216,6 +1246,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
1216
1246
|
shipping_surge_fee: number;
|
|
1217
1247
|
small_order_fee: number;
|
|
1218
1248
|
promotion: {
|
|
1249
|
+
merchant_item_subsidy_amount?: number | null | undefined;
|
|
1219
1250
|
shipping_discount_amount: number;
|
|
1220
1251
|
shipping_voucher_amount: number;
|
|
1221
1252
|
item_discount_amount: number;
|
|
@@ -1225,6 +1256,7 @@ export declare const SFGetOrderRes: z.ZodObject<{
|
|
|
1225
1256
|
tax_amount: number;
|
|
1226
1257
|
total_amount: number;
|
|
1227
1258
|
merchant_surcharge_fee: number;
|
|
1259
|
+
unit_list_price_subtotal: number;
|
|
1228
1260
|
};
|
|
1229
1261
|
currency: "MYR";
|
|
1230
1262
|
payment_method: "CASH_ON_DELIVERY" | "ONLINE_PAYMENT";
|