@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
|
@@ -1150,25 +1150,49 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
1150
1150
|
titles: z.ZodArray<z.ZodObject<{
|
|
1151
1151
|
_id: z.ZodString;
|
|
1152
1152
|
name: z.ZodString;
|
|
1153
|
+
image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1153
1154
|
acquiredAt: z.ZodEffects<z.ZodString, string, string>;
|
|
1154
1155
|
expiredAt: z.ZodEffects<z.ZodString, string, string>;
|
|
1156
|
+
collectible: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1155
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1158
|
+
image?: string | null | undefined;
|
|
1159
|
+
collectible?: string | null | undefined;
|
|
1156
1160
|
name: string;
|
|
1157
1161
|
_id: string;
|
|
1158
1162
|
expiredAt: string;
|
|
1159
1163
|
acquiredAt: string;
|
|
1160
1164
|
}, {
|
|
1165
|
+
image?: string | null | undefined;
|
|
1166
|
+
collectible?: string | null | undefined;
|
|
1161
1167
|
name: string;
|
|
1162
1168
|
_id: string;
|
|
1163
1169
|
expiredAt: string;
|
|
1164
1170
|
acquiredAt: string;
|
|
1165
1171
|
}>, "many">;
|
|
1172
|
+
pf_tier: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1173
|
+
_id: z.ZodString;
|
|
1174
|
+
name: z.ZodString;
|
|
1175
|
+
image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1176
|
+
}, "strip", z.ZodTypeAny, {
|
|
1177
|
+
image?: string | null | undefined;
|
|
1178
|
+
name: string;
|
|
1179
|
+
_id: string;
|
|
1180
|
+
}, {
|
|
1181
|
+
image?: string | null | undefined;
|
|
1182
|
+
name: string;
|
|
1183
|
+
_id: string;
|
|
1184
|
+
}>>>;
|
|
1166
1185
|
}, {
|
|
1167
1186
|
name: z.ZodDefault<z.ZodString>;
|
|
1168
1187
|
userId: z.ZodString;
|
|
1169
1188
|
}>, "strip", z.ZodTypeAny, {
|
|
1170
1189
|
cardNo?: string | null | undefined;
|
|
1171
1190
|
membership?: string | null | undefined;
|
|
1191
|
+
pf_tier?: {
|
|
1192
|
+
image?: string | null | undefined;
|
|
1193
|
+
name: string;
|
|
1194
|
+
_id: string;
|
|
1195
|
+
} | null | undefined;
|
|
1172
1196
|
name: string;
|
|
1173
1197
|
id: string;
|
|
1174
1198
|
user: string;
|
|
@@ -1199,6 +1223,8 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
1199
1223
|
}[];
|
|
1200
1224
|
};
|
|
1201
1225
|
titles: {
|
|
1226
|
+
image?: string | null | undefined;
|
|
1227
|
+
collectible?: string | null | undefined;
|
|
1202
1228
|
name: string;
|
|
1203
1229
|
_id: string;
|
|
1204
1230
|
expiredAt: string;
|
|
@@ -1331,6 +1357,11 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
1331
1357
|
name?: string | undefined;
|
|
1332
1358
|
cardNo?: string | null | undefined;
|
|
1333
1359
|
membership?: string | null | undefined;
|
|
1360
|
+
pf_tier?: {
|
|
1361
|
+
image?: string | null | undefined;
|
|
1362
|
+
name: string;
|
|
1363
|
+
_id: string;
|
|
1364
|
+
} | null | undefined;
|
|
1334
1365
|
id: string;
|
|
1335
1366
|
user: string;
|
|
1336
1367
|
userId: string;
|
|
@@ -1360,6 +1391,8 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
1360
1391
|
}[];
|
|
1361
1392
|
};
|
|
1362
1393
|
titles: {
|
|
1394
|
+
image?: string | null | undefined;
|
|
1395
|
+
collectible?: string | null | undefined;
|
|
1363
1396
|
name: string;
|
|
1364
1397
|
_id: string;
|
|
1365
1398
|
expiredAt: string;
|
|
@@ -3591,7 +3624,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
3591
3624
|
postcode: string;
|
|
3592
3625
|
}>;
|
|
3593
3626
|
phoneNo: z.ZodString;
|
|
3594
|
-
email: z.ZodString
|
|
3627
|
+
email: z.ZodDefault<z.ZodString>;
|
|
3595
3628
|
regNo: z.ZodString;
|
|
3596
3629
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3597
3630
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3958,6 +3991,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
3958
3991
|
}, {
|
|
3959
3992
|
code?: string | null | undefined;
|
|
3960
3993
|
url?: string | null | undefined;
|
|
3994
|
+
email?: string | undefined;
|
|
3961
3995
|
description?: string | null | undefined;
|
|
3962
3996
|
_id?: string | null | undefined;
|
|
3963
3997
|
legalName?: string | null | undefined;
|
|
@@ -4028,7 +4062,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
4028
4062
|
city: string;
|
|
4029
4063
|
postcode: string;
|
|
4030
4064
|
};
|
|
4031
|
-
email: string;
|
|
4032
4065
|
phoneNo: string;
|
|
4033
4066
|
regNo: string;
|
|
4034
4067
|
}>;
|
|
@@ -5897,6 +5930,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
5897
5930
|
profile: {
|
|
5898
5931
|
code?: string | null | undefined;
|
|
5899
5932
|
url?: string | null | undefined;
|
|
5933
|
+
email?: string | undefined;
|
|
5900
5934
|
description?: string | null | undefined;
|
|
5901
5935
|
_id?: string | null | undefined;
|
|
5902
5936
|
legalName?: string | null | undefined;
|
|
@@ -5967,7 +6001,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
5967
6001
|
city: string;
|
|
5968
6002
|
postcode: string;
|
|
5969
6003
|
};
|
|
5970
|
-
email: string;
|
|
5971
6004
|
phoneNo: string;
|
|
5972
6005
|
regNo: string;
|
|
5973
6006
|
};
|
|
@@ -7386,6 +7419,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
7386
7419
|
profile: {
|
|
7387
7420
|
code?: string | null | undefined;
|
|
7388
7421
|
url?: string | null | undefined;
|
|
7422
|
+
email?: string | undefined;
|
|
7389
7423
|
description?: string | null | undefined;
|
|
7390
7424
|
_id?: string | null | undefined;
|
|
7391
7425
|
legalName?: string | null | undefined;
|
|
@@ -7456,7 +7490,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
7456
7490
|
city: string;
|
|
7457
7491
|
postcode: string;
|
|
7458
7492
|
};
|
|
7459
|
-
email: string;
|
|
7460
7493
|
phoneNo: string;
|
|
7461
7494
|
regNo: string;
|
|
7462
7495
|
};
|
|
@@ -8039,7 +8072,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
8039
8072
|
postcode: string;
|
|
8040
8073
|
}>;
|
|
8041
8074
|
phoneNo: z.ZodString;
|
|
8042
|
-
email: z.ZodString
|
|
8075
|
+
email: z.ZodDefault<z.ZodString>;
|
|
8043
8076
|
regNo: z.ZodString;
|
|
8044
8077
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8045
8078
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -8406,6 +8439,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
8406
8439
|
}, {
|
|
8407
8440
|
code?: string | null | undefined;
|
|
8408
8441
|
url?: string | null | undefined;
|
|
8442
|
+
email?: string | undefined;
|
|
8409
8443
|
description?: string | null | undefined;
|
|
8410
8444
|
_id?: string | null | undefined;
|
|
8411
8445
|
legalName?: string | null | undefined;
|
|
@@ -8476,7 +8510,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
8476
8510
|
city: string;
|
|
8477
8511
|
postcode: string;
|
|
8478
8512
|
};
|
|
8479
|
-
email: string;
|
|
8480
8513
|
phoneNo: string;
|
|
8481
8514
|
regNo: string;
|
|
8482
8515
|
}>;
|
|
@@ -10345,6 +10378,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
10345
10378
|
profile: {
|
|
10346
10379
|
code?: string | null | undefined;
|
|
10347
10380
|
url?: string | null | undefined;
|
|
10381
|
+
email?: string | undefined;
|
|
10348
10382
|
description?: string | null | undefined;
|
|
10349
10383
|
_id?: string | null | undefined;
|
|
10350
10384
|
legalName?: string | null | undefined;
|
|
@@ -10415,7 +10449,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
10415
10449
|
city: string;
|
|
10416
10450
|
postcode: string;
|
|
10417
10451
|
};
|
|
10418
|
-
email: string;
|
|
10419
10452
|
phoneNo: string;
|
|
10420
10453
|
regNo: string;
|
|
10421
10454
|
};
|
|
@@ -10898,7 +10931,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
10898
10931
|
postcode: string;
|
|
10899
10932
|
}>;
|
|
10900
10933
|
phoneNo: z.ZodString;
|
|
10901
|
-
email: z.ZodString
|
|
10934
|
+
email: z.ZodDefault<z.ZodString>;
|
|
10902
10935
|
regNo: z.ZodString;
|
|
10903
10936
|
legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10904
10937
|
sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -11265,6 +11298,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
11265
11298
|
}, {
|
|
11266
11299
|
code?: string | null | undefined;
|
|
11267
11300
|
url?: string | null | undefined;
|
|
11301
|
+
email?: string | undefined;
|
|
11268
11302
|
description?: string | null | undefined;
|
|
11269
11303
|
_id?: string | null | undefined;
|
|
11270
11304
|
legalName?: string | null | undefined;
|
|
@@ -11335,7 +11369,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
11335
11369
|
city: string;
|
|
11336
11370
|
postcode: string;
|
|
11337
11371
|
};
|
|
11338
|
-
email: string;
|
|
11339
11372
|
phoneNo: string;
|
|
11340
11373
|
regNo: string;
|
|
11341
11374
|
}>;
|
|
@@ -13204,6 +13237,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
13204
13237
|
profile: {
|
|
13205
13238
|
code?: string | null | undefined;
|
|
13206
13239
|
url?: string | null | undefined;
|
|
13240
|
+
email?: string | undefined;
|
|
13207
13241
|
description?: string | null | undefined;
|
|
13208
13242
|
_id?: string | null | undefined;
|
|
13209
13243
|
legalName?: string | null | undefined;
|
|
@@ -13274,7 +13308,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
13274
13308
|
city: string;
|
|
13275
13309
|
postcode: string;
|
|
13276
13310
|
};
|
|
13277
|
-
email: string;
|
|
13278
13311
|
phoneNo: string;
|
|
13279
13312
|
regNo: string;
|
|
13280
13313
|
};
|
|
@@ -13972,6 +14005,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
13972
14005
|
profile: {
|
|
13973
14006
|
code?: string | null | undefined;
|
|
13974
14007
|
url?: string | null | undefined;
|
|
14008
|
+
email?: string | undefined;
|
|
13975
14009
|
description?: string | null | undefined;
|
|
13976
14010
|
_id?: string | null | undefined;
|
|
13977
14011
|
legalName?: string | null | undefined;
|
|
@@ -14042,7 +14076,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
14042
14076
|
city: string;
|
|
14043
14077
|
postcode: string;
|
|
14044
14078
|
};
|
|
14045
|
-
email: string;
|
|
14046
14079
|
phoneNo: string;
|
|
14047
14080
|
regNo: string;
|
|
14048
14081
|
};
|
|
@@ -15979,6 +16012,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
15979
16012
|
profile: {
|
|
15980
16013
|
code?: string | null | undefined;
|
|
15981
16014
|
url?: string | null | undefined;
|
|
16015
|
+
email?: string | undefined;
|
|
15982
16016
|
description?: string | null | undefined;
|
|
15983
16017
|
_id?: string | null | undefined;
|
|
15984
16018
|
legalName?: string | null | undefined;
|
|
@@ -16049,7 +16083,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16049
16083
|
city: string;
|
|
16050
16084
|
postcode: string;
|
|
16051
16085
|
};
|
|
16052
|
-
email: string;
|
|
16053
16086
|
phoneNo: string;
|
|
16054
16087
|
regNo: string;
|
|
16055
16088
|
};
|
|
@@ -16387,6 +16420,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16387
16420
|
profile: {
|
|
16388
16421
|
code?: string | null | undefined;
|
|
16389
16422
|
url?: string | null | undefined;
|
|
16423
|
+
email?: string | undefined;
|
|
16390
16424
|
description?: string | null | undefined;
|
|
16391
16425
|
_id?: string | null | undefined;
|
|
16392
16426
|
legalName?: string | null | undefined;
|
|
@@ -16457,7 +16491,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16457
16491
|
city: string;
|
|
16458
16492
|
postcode: string;
|
|
16459
16493
|
};
|
|
16460
|
-
email: string;
|
|
16461
16494
|
phoneNo: string;
|
|
16462
16495
|
regNo: string;
|
|
16463
16496
|
};
|
|
@@ -16887,6 +16920,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16887
16920
|
profile: {
|
|
16888
16921
|
code?: string | null | undefined;
|
|
16889
16922
|
url?: string | null | undefined;
|
|
16923
|
+
email?: string | undefined;
|
|
16890
16924
|
description?: string | null | undefined;
|
|
16891
16925
|
_id?: string | null | undefined;
|
|
16892
16926
|
legalName?: string | null | undefined;
|
|
@@ -16957,7 +16991,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
16957
16991
|
city: string;
|
|
16958
16992
|
postcode: string;
|
|
16959
16993
|
};
|
|
16960
|
-
email: string;
|
|
16961
16994
|
phoneNo: string;
|
|
16962
16995
|
regNo: string;
|
|
16963
16996
|
};
|
|
@@ -17078,6 +17111,11 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
17078
17111
|
member: {
|
|
17079
17112
|
cardNo?: string | null | undefined;
|
|
17080
17113
|
membership?: string | null | undefined;
|
|
17114
|
+
pf_tier?: {
|
|
17115
|
+
image?: string | null | undefined;
|
|
17116
|
+
name: string;
|
|
17117
|
+
_id: string;
|
|
17118
|
+
} | null | undefined;
|
|
17081
17119
|
name: string;
|
|
17082
17120
|
id: string;
|
|
17083
17121
|
user: string;
|
|
@@ -17108,6 +17146,8 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
17108
17146
|
}[];
|
|
17109
17147
|
};
|
|
17110
17148
|
titles: {
|
|
17149
|
+
image?: string | null | undefined;
|
|
17150
|
+
collectible?: string | null | undefined;
|
|
17111
17151
|
name: string;
|
|
17112
17152
|
_id: string;
|
|
17113
17153
|
expiredAt: string;
|
|
@@ -18769,6 +18809,11 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
18769
18809
|
name?: string | undefined;
|
|
18770
18810
|
cardNo?: string | null | undefined;
|
|
18771
18811
|
membership?: string | null | undefined;
|
|
18812
|
+
pf_tier?: {
|
|
18813
|
+
image?: string | null | undefined;
|
|
18814
|
+
name: string;
|
|
18815
|
+
_id: string;
|
|
18816
|
+
} | null | undefined;
|
|
18772
18817
|
id: string;
|
|
18773
18818
|
user: string;
|
|
18774
18819
|
userId: string;
|
|
@@ -18798,6 +18843,8 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
18798
18843
|
}[];
|
|
18799
18844
|
};
|
|
18800
18845
|
titles: {
|
|
18846
|
+
image?: string | null | undefined;
|
|
18847
|
+
collectible?: string | null | undefined;
|
|
18801
18848
|
name: string;
|
|
18802
18849
|
_id: string;
|
|
18803
18850
|
expiredAt: string;
|
|
@@ -19359,6 +19406,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
19359
19406
|
profile: {
|
|
19360
19407
|
code?: string | null | undefined;
|
|
19361
19408
|
url?: string | null | undefined;
|
|
19409
|
+
email?: string | undefined;
|
|
19362
19410
|
description?: string | null | undefined;
|
|
19363
19411
|
_id?: string | null | undefined;
|
|
19364
19412
|
legalName?: string | null | undefined;
|
|
@@ -19429,7 +19477,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
19429
19477
|
city: string;
|
|
19430
19478
|
postcode: string;
|
|
19431
19479
|
};
|
|
19432
|
-
email: string;
|
|
19433
19480
|
phoneNo: string;
|
|
19434
19481
|
regNo: string;
|
|
19435
19482
|
};
|
|
@@ -19767,6 +19814,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
19767
19814
|
profile: {
|
|
19768
19815
|
code?: string | null | undefined;
|
|
19769
19816
|
url?: string | null | undefined;
|
|
19817
|
+
email?: string | undefined;
|
|
19770
19818
|
description?: string | null | undefined;
|
|
19771
19819
|
_id?: string | null | undefined;
|
|
19772
19820
|
legalName?: string | null | undefined;
|
|
@@ -19837,7 +19885,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
19837
19885
|
city: string;
|
|
19838
19886
|
postcode: string;
|
|
19839
19887
|
};
|
|
19840
|
-
email: string;
|
|
19841
19888
|
phoneNo: string;
|
|
19842
19889
|
regNo: string;
|
|
19843
19890
|
};
|
|
@@ -20267,6 +20314,7 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
20267
20314
|
profile: {
|
|
20268
20315
|
code?: string | null | undefined;
|
|
20269
20316
|
url?: string | null | undefined;
|
|
20317
|
+
email?: string | undefined;
|
|
20270
20318
|
description?: string | null | undefined;
|
|
20271
20319
|
_id?: string | null | undefined;
|
|
20272
20320
|
legalName?: string | null | undefined;
|
|
@@ -20337,7 +20385,6 @@ export declare const KioskVerifyMemberDto: z.ZodObject<{
|
|
|
20337
20385
|
city: string;
|
|
20338
20386
|
postcode: string;
|
|
20339
20387
|
};
|
|
20340
|
-
email: string;
|
|
20341
20388
|
phoneNo: string;
|
|
20342
20389
|
regNo: string;
|
|
20343
20390
|
};
|
|
@@ -12,5 +12,244 @@ declare const FdtoEffectValidationResult: z.ZodObject<{
|
|
|
12
12
|
valid: boolean;
|
|
13
13
|
reason: string;
|
|
14
14
|
}>;
|
|
15
|
+
declare const FdtoPayByCredit: z.ZodObject<{
|
|
16
|
+
amount: z.ZodObject<{
|
|
17
|
+
currency: z.ZodIntersection<z.ZodString, z.ZodUnion<[z.ZodLiteral<"AED">, z.ZodLiteral<"AFN">, z.ZodLiteral<"ALL">, z.ZodLiteral<"AMD">, z.ZodLiteral<"ANG">, z.ZodLiteral<"AOA">, z.ZodLiteral<"ARS">, z.ZodLiteral<"AUD">, z.ZodLiteral<"AWG">, z.ZodLiteral<"AZN">, z.ZodLiteral<"BAM">, z.ZodLiteral<"BBD">, z.ZodLiteral<"BDT">, z.ZodLiteral<"BGN">, z.ZodLiteral<"BHD">, z.ZodLiteral<"BIF">, z.ZodLiteral<"BMD">, z.ZodLiteral<"BND">, z.ZodLiteral<"BOB">, z.ZodLiteral<"BOV">, z.ZodLiteral<"BRL">, z.ZodLiteral<"BSD">, z.ZodLiteral<"BTN">, z.ZodLiteral<"BWP">, z.ZodLiteral<"BYN">, z.ZodLiteral<"BZD">, z.ZodLiteral<"CAD">, z.ZodLiteral<"CDF">, z.ZodLiteral<"CHE">, z.ZodLiteral<"CHF">, z.ZodLiteral<"CHW">, z.ZodLiteral<"CLF">, z.ZodLiteral<"CLP">, z.ZodLiteral<"CNY">, z.ZodLiteral<"COP">, z.ZodLiteral<"COU">, z.ZodLiteral<"CRC">, z.ZodLiteral<"CUC">, z.ZodLiteral<"CUP">, z.ZodLiteral<"CVE">, z.ZodLiteral<"CZK">, z.ZodLiteral<"DJF">, z.ZodLiteral<"DKK">, z.ZodLiteral<"DOP">, z.ZodLiteral<"DZD">, z.ZodLiteral<"EGP">, z.ZodLiteral<"ERN">, z.ZodLiteral<"ETB">, z.ZodLiteral<"EUR">, z.ZodLiteral<"FJD">, z.ZodLiteral<"FKP">, z.ZodLiteral<"GBP">, z.ZodLiteral<"GEL">, z.ZodLiteral<"GHS">, z.ZodLiteral<"GIP">, z.ZodLiteral<"GMD">, z.ZodLiteral<"GNF">, z.ZodLiteral<"GTQ">, z.ZodLiteral<"GYD">, z.ZodLiteral<"HKD">, z.ZodLiteral<"HNL">, z.ZodLiteral<"HRK">, z.ZodLiteral<"HTG">, z.ZodLiteral<"HUF">, z.ZodLiteral<"IDR">, z.ZodLiteral<"ILS">, z.ZodLiteral<"INR">, z.ZodLiteral<"IQD">, z.ZodLiteral<"IRR">, z.ZodLiteral<"ISK">, z.ZodLiteral<"JMD">, z.ZodLiteral<"JOD">, z.ZodLiteral<"JPY">, z.ZodLiteral<"KES">, z.ZodLiteral<"KGS">, z.ZodLiteral<"KHR">, z.ZodLiteral<"KMF">, z.ZodLiteral<"KPW">, z.ZodLiteral<"KRW">, z.ZodLiteral<"KWD">, z.ZodLiteral<"KYD">, z.ZodLiteral<"KZT">, z.ZodLiteral<"LAK">, z.ZodLiteral<"LBP">, z.ZodLiteral<"LKR">, z.ZodLiteral<"LRD">, z.ZodLiteral<"LSL">, z.ZodLiteral<"LYD">, z.ZodLiteral<"MAD">, z.ZodLiteral<"MDL">, z.ZodLiteral<"MGA">, z.ZodLiteral<"MKD">, z.ZodLiteral<"MMK">, z.ZodLiteral<"MNT">, z.ZodLiteral<"MOP">, z.ZodLiteral<"MRU">, z.ZodLiteral<"MUR">, z.ZodLiteral<"MVR">, z.ZodLiteral<"MWK">, z.ZodLiteral<"MXN">, z.ZodLiteral<"MXV">, z.ZodLiteral<"MYR">, z.ZodLiteral<"MZN">, z.ZodLiteral<"NAD">, z.ZodLiteral<"NGN">, z.ZodLiteral<"NIO">, z.ZodLiteral<"NOK">, z.ZodLiteral<"NPR">, z.ZodLiteral<"NZD">, z.ZodLiteral<"OMR">, z.ZodLiteral<"PAB">, z.ZodLiteral<"PEN">, z.ZodLiteral<"PGK">, z.ZodLiteral<"PHP">, z.ZodLiteral<"PKR">, z.ZodLiteral<"PLN">, z.ZodLiteral<"PYG">, z.ZodLiteral<"QAR">, z.ZodLiteral<"RON">, z.ZodLiteral<"RSD">, z.ZodLiteral<"RUB">, z.ZodLiteral<"RWF">, z.ZodLiteral<"SAR">, z.ZodLiteral<"SBD">, z.ZodLiteral<"SCR">, z.ZodLiteral<"SDG">, z.ZodLiteral<"SEK">, z.ZodLiteral<"SGD">, z.ZodLiteral<"SHP">, z.ZodLiteral<"SLL">, z.ZodLiteral<"SOS">, z.ZodLiteral<"SRD">, z.ZodLiteral<"SSP">, z.ZodLiteral<"STN">, z.ZodLiteral<"SVC">, z.ZodLiteral<"SYP">, z.ZodLiteral<"SZL">, z.ZodLiteral<"THB">, z.ZodLiteral<"TJS">, z.ZodLiteral<"TMT">, z.ZodLiteral<"TND">, z.ZodLiteral<"TOP">, z.ZodLiteral<"TRY">, z.ZodLiteral<"TTD">, z.ZodLiteral<"TWD">, z.ZodLiteral<"TZS">, z.ZodLiteral<"UAH">, z.ZodLiteral<"UGX">, z.ZodLiteral<"USD">, z.ZodLiteral<"USN">, z.ZodLiteral<"UYI">, z.ZodLiteral<"UYU">, z.ZodLiteral<"UYW">, z.ZodLiteral<"UZS">, z.ZodLiteral<"VES">, z.ZodLiteral<"VND">, z.ZodLiteral<"VUV">, z.ZodLiteral<"WST">, z.ZodLiteral<"XAF">, z.ZodLiteral<"XAG">, z.ZodLiteral<"XAU">, z.ZodLiteral<"XBA">, z.ZodLiteral<"XBB">, z.ZodLiteral<"XBC">, z.ZodLiteral<"XBD">, z.ZodLiteral<"XCD">, z.ZodLiteral<"XDR">, z.ZodLiteral<"XOF">, z.ZodLiteral<"XPD">, z.ZodLiteral<"XPF">, z.ZodLiteral<"XPT">, z.ZodLiteral<"XSU">, z.ZodLiteral<"XTS">, z.ZodLiteral<"XUA">, z.ZodLiteral<"XXX">, z.ZodLiteral<"YER">, z.ZodLiteral<"ZAR">, z.ZodLiteral<"ZMW">, z.ZodLiteral<"ZWL">]>>;
|
|
18
|
+
amount: z.ZodNumber;
|
|
19
|
+
precision: z.ZodNumber;
|
|
20
|
+
}, "strip", z.ZodTypeAny, {
|
|
21
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
22
|
+
amount: number;
|
|
23
|
+
precision: number;
|
|
24
|
+
}, {
|
|
25
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
26
|
+
amount: number;
|
|
27
|
+
precision: number;
|
|
28
|
+
}>;
|
|
29
|
+
member: z.ZodString;
|
|
30
|
+
bill: z.ZodString;
|
|
31
|
+
businessId: z.ZodString;
|
|
32
|
+
otp: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33
|
+
}, "strip", z.ZodTypeAny, {
|
|
34
|
+
otp?: string | null | undefined;
|
|
35
|
+
amount: {
|
|
36
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
37
|
+
amount: number;
|
|
38
|
+
precision: number;
|
|
39
|
+
};
|
|
40
|
+
businessId: string;
|
|
41
|
+
bill: string;
|
|
42
|
+
member: string;
|
|
43
|
+
}, {
|
|
44
|
+
otp?: string | null | undefined;
|
|
45
|
+
amount: {
|
|
46
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
47
|
+
amount: number;
|
|
48
|
+
precision: number;
|
|
49
|
+
};
|
|
50
|
+
businessId: string;
|
|
51
|
+
bill: string;
|
|
52
|
+
member: string;
|
|
53
|
+
}>;
|
|
54
|
+
declare const FdtoFreeCreditAsDiscount: z.ZodObject<{
|
|
55
|
+
amount: z.ZodObject<{
|
|
56
|
+
currency: z.ZodIntersection<z.ZodString, z.ZodUnion<[z.ZodLiteral<"AED">, z.ZodLiteral<"AFN">, z.ZodLiteral<"ALL">, z.ZodLiteral<"AMD">, z.ZodLiteral<"ANG">, z.ZodLiteral<"AOA">, z.ZodLiteral<"ARS">, z.ZodLiteral<"AUD">, z.ZodLiteral<"AWG">, z.ZodLiteral<"AZN">, z.ZodLiteral<"BAM">, z.ZodLiteral<"BBD">, z.ZodLiteral<"BDT">, z.ZodLiteral<"BGN">, z.ZodLiteral<"BHD">, z.ZodLiteral<"BIF">, z.ZodLiteral<"BMD">, z.ZodLiteral<"BND">, z.ZodLiteral<"BOB">, z.ZodLiteral<"BOV">, z.ZodLiteral<"BRL">, z.ZodLiteral<"BSD">, z.ZodLiteral<"BTN">, z.ZodLiteral<"BWP">, z.ZodLiteral<"BYN">, z.ZodLiteral<"BZD">, z.ZodLiteral<"CAD">, z.ZodLiteral<"CDF">, z.ZodLiteral<"CHE">, z.ZodLiteral<"CHF">, z.ZodLiteral<"CHW">, z.ZodLiteral<"CLF">, z.ZodLiteral<"CLP">, z.ZodLiteral<"CNY">, z.ZodLiteral<"COP">, z.ZodLiteral<"COU">, z.ZodLiteral<"CRC">, z.ZodLiteral<"CUC">, z.ZodLiteral<"CUP">, z.ZodLiteral<"CVE">, z.ZodLiteral<"CZK">, z.ZodLiteral<"DJF">, z.ZodLiteral<"DKK">, z.ZodLiteral<"DOP">, z.ZodLiteral<"DZD">, z.ZodLiteral<"EGP">, z.ZodLiteral<"ERN">, z.ZodLiteral<"ETB">, z.ZodLiteral<"EUR">, z.ZodLiteral<"FJD">, z.ZodLiteral<"FKP">, z.ZodLiteral<"GBP">, z.ZodLiteral<"GEL">, z.ZodLiteral<"GHS">, z.ZodLiteral<"GIP">, z.ZodLiteral<"GMD">, z.ZodLiteral<"GNF">, z.ZodLiteral<"GTQ">, z.ZodLiteral<"GYD">, z.ZodLiteral<"HKD">, z.ZodLiteral<"HNL">, z.ZodLiteral<"HRK">, z.ZodLiteral<"HTG">, z.ZodLiteral<"HUF">, z.ZodLiteral<"IDR">, z.ZodLiteral<"ILS">, z.ZodLiteral<"INR">, z.ZodLiteral<"IQD">, z.ZodLiteral<"IRR">, z.ZodLiteral<"ISK">, z.ZodLiteral<"JMD">, z.ZodLiteral<"JOD">, z.ZodLiteral<"JPY">, z.ZodLiteral<"KES">, z.ZodLiteral<"KGS">, z.ZodLiteral<"KHR">, z.ZodLiteral<"KMF">, z.ZodLiteral<"KPW">, z.ZodLiteral<"KRW">, z.ZodLiteral<"KWD">, z.ZodLiteral<"KYD">, z.ZodLiteral<"KZT">, z.ZodLiteral<"LAK">, z.ZodLiteral<"LBP">, z.ZodLiteral<"LKR">, z.ZodLiteral<"LRD">, z.ZodLiteral<"LSL">, z.ZodLiteral<"LYD">, z.ZodLiteral<"MAD">, z.ZodLiteral<"MDL">, z.ZodLiteral<"MGA">, z.ZodLiteral<"MKD">, z.ZodLiteral<"MMK">, z.ZodLiteral<"MNT">, z.ZodLiteral<"MOP">, z.ZodLiteral<"MRU">, z.ZodLiteral<"MUR">, z.ZodLiteral<"MVR">, z.ZodLiteral<"MWK">, z.ZodLiteral<"MXN">, z.ZodLiteral<"MXV">, z.ZodLiteral<"MYR">, z.ZodLiteral<"MZN">, z.ZodLiteral<"NAD">, z.ZodLiteral<"NGN">, z.ZodLiteral<"NIO">, z.ZodLiteral<"NOK">, z.ZodLiteral<"NPR">, z.ZodLiteral<"NZD">, z.ZodLiteral<"OMR">, z.ZodLiteral<"PAB">, z.ZodLiteral<"PEN">, z.ZodLiteral<"PGK">, z.ZodLiteral<"PHP">, z.ZodLiteral<"PKR">, z.ZodLiteral<"PLN">, z.ZodLiteral<"PYG">, z.ZodLiteral<"QAR">, z.ZodLiteral<"RON">, z.ZodLiteral<"RSD">, z.ZodLiteral<"RUB">, z.ZodLiteral<"RWF">, z.ZodLiteral<"SAR">, z.ZodLiteral<"SBD">, z.ZodLiteral<"SCR">, z.ZodLiteral<"SDG">, z.ZodLiteral<"SEK">, z.ZodLiteral<"SGD">, z.ZodLiteral<"SHP">, z.ZodLiteral<"SLL">, z.ZodLiteral<"SOS">, z.ZodLiteral<"SRD">, z.ZodLiteral<"SSP">, z.ZodLiteral<"STN">, z.ZodLiteral<"SVC">, z.ZodLiteral<"SYP">, z.ZodLiteral<"SZL">, z.ZodLiteral<"THB">, z.ZodLiteral<"TJS">, z.ZodLiteral<"TMT">, z.ZodLiteral<"TND">, z.ZodLiteral<"TOP">, z.ZodLiteral<"TRY">, z.ZodLiteral<"TTD">, z.ZodLiteral<"TWD">, z.ZodLiteral<"TZS">, z.ZodLiteral<"UAH">, z.ZodLiteral<"UGX">, z.ZodLiteral<"USD">, z.ZodLiteral<"USN">, z.ZodLiteral<"UYI">, z.ZodLiteral<"UYU">, z.ZodLiteral<"UYW">, z.ZodLiteral<"UZS">, z.ZodLiteral<"VES">, z.ZodLiteral<"VND">, z.ZodLiteral<"VUV">, z.ZodLiteral<"WST">, z.ZodLiteral<"XAF">, z.ZodLiteral<"XAG">, z.ZodLiteral<"XAU">, z.ZodLiteral<"XBA">, z.ZodLiteral<"XBB">, z.ZodLiteral<"XBC">, z.ZodLiteral<"XBD">, z.ZodLiteral<"XCD">, z.ZodLiteral<"XDR">, z.ZodLiteral<"XOF">, z.ZodLiteral<"XPD">, z.ZodLiteral<"XPF">, z.ZodLiteral<"XPT">, z.ZodLiteral<"XSU">, z.ZodLiteral<"XTS">, z.ZodLiteral<"XUA">, z.ZodLiteral<"XXX">, z.ZodLiteral<"YER">, z.ZodLiteral<"ZAR">, z.ZodLiteral<"ZMW">, z.ZodLiteral<"ZWL">]>>;
|
|
57
|
+
amount: z.ZodNumber;
|
|
58
|
+
precision: z.ZodNumber;
|
|
59
|
+
}, "strip", z.ZodTypeAny, {
|
|
60
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
61
|
+
amount: number;
|
|
62
|
+
precision: number;
|
|
63
|
+
}, {
|
|
64
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
65
|
+
amount: number;
|
|
66
|
+
precision: number;
|
|
67
|
+
}>;
|
|
68
|
+
member: z.ZodString;
|
|
69
|
+
bill: z.ZodString;
|
|
70
|
+
businessId: z.ZodString;
|
|
71
|
+
}, "strip", z.ZodTypeAny, {
|
|
72
|
+
amount: {
|
|
73
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
74
|
+
amount: number;
|
|
75
|
+
precision: number;
|
|
76
|
+
};
|
|
77
|
+
businessId: string;
|
|
78
|
+
bill: string;
|
|
79
|
+
member: string;
|
|
80
|
+
}, {
|
|
81
|
+
amount: {
|
|
82
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
83
|
+
amount: number;
|
|
84
|
+
precision: number;
|
|
85
|
+
};
|
|
86
|
+
businessId: string;
|
|
87
|
+
bill: string;
|
|
88
|
+
member: string;
|
|
89
|
+
}>;
|
|
90
|
+
declare const FdtoCreditTransaction: z.ZodObject<{
|
|
91
|
+
_id: z.ZodString;
|
|
92
|
+
business: z.ZodString;
|
|
93
|
+
pf_business: z.ZodAny;
|
|
94
|
+
member: z.ZodString;
|
|
95
|
+
pf_member: z.ZodAny;
|
|
96
|
+
source: z.ZodAny;
|
|
97
|
+
ref: z.ZodString;
|
|
98
|
+
remark: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
99
|
+
from: z.ZodObject<{
|
|
100
|
+
normal: z.ZodNumber;
|
|
101
|
+
free: z.ZodArray<z.ZodObject<{
|
|
102
|
+
_id: z.ZodString;
|
|
103
|
+
amount: z.ZodNumber;
|
|
104
|
+
expiredAt: z.ZodString;
|
|
105
|
+
}, "strip", z.ZodTypeAny, {
|
|
106
|
+
_id: string;
|
|
107
|
+
amount: number;
|
|
108
|
+
expiredAt: string;
|
|
109
|
+
}, {
|
|
110
|
+
_id: string;
|
|
111
|
+
amount: number;
|
|
112
|
+
expiredAt: string;
|
|
113
|
+
}>, "many">;
|
|
114
|
+
}, "strip", z.ZodTypeAny, {
|
|
115
|
+
normal: number;
|
|
116
|
+
free: {
|
|
117
|
+
_id: string;
|
|
118
|
+
amount: number;
|
|
119
|
+
expiredAt: string;
|
|
120
|
+
}[];
|
|
121
|
+
}, {
|
|
122
|
+
normal: number;
|
|
123
|
+
free: {
|
|
124
|
+
_id: string;
|
|
125
|
+
amount: number;
|
|
126
|
+
expiredAt: string;
|
|
127
|
+
}[];
|
|
128
|
+
}>;
|
|
129
|
+
to: z.ZodObject<{
|
|
130
|
+
normal: z.ZodNumber;
|
|
131
|
+
free: z.ZodArray<z.ZodObject<{
|
|
132
|
+
_id: z.ZodString;
|
|
133
|
+
amount: z.ZodNumber;
|
|
134
|
+
expiredAt: z.ZodString;
|
|
135
|
+
}, "strip", z.ZodTypeAny, {
|
|
136
|
+
_id: string;
|
|
137
|
+
amount: number;
|
|
138
|
+
expiredAt: string;
|
|
139
|
+
}, {
|
|
140
|
+
_id: string;
|
|
141
|
+
amount: number;
|
|
142
|
+
expiredAt: string;
|
|
143
|
+
}>, "many">;
|
|
144
|
+
}, "strip", z.ZodTypeAny, {
|
|
145
|
+
normal: number;
|
|
146
|
+
free: {
|
|
147
|
+
_id: string;
|
|
148
|
+
amount: number;
|
|
149
|
+
expiredAt: string;
|
|
150
|
+
}[];
|
|
151
|
+
}, {
|
|
152
|
+
normal: number;
|
|
153
|
+
free: {
|
|
154
|
+
_id: string;
|
|
155
|
+
amount: number;
|
|
156
|
+
expiredAt: string;
|
|
157
|
+
}[];
|
|
158
|
+
}>;
|
|
159
|
+
normal: z.ZodNumber;
|
|
160
|
+
free: z.ZodArray<z.ZodObject<{
|
|
161
|
+
_id: z.ZodString;
|
|
162
|
+
amount: z.ZodNumber;
|
|
163
|
+
expiredAt: z.ZodString;
|
|
164
|
+
}, "strip", z.ZodTypeAny, {
|
|
165
|
+
_id: string;
|
|
166
|
+
amount: number;
|
|
167
|
+
expiredAt: string;
|
|
168
|
+
}, {
|
|
169
|
+
_id: string;
|
|
170
|
+
amount: number;
|
|
171
|
+
expiredAt: string;
|
|
172
|
+
}>, "many">;
|
|
173
|
+
createdAt: z.ZodString;
|
|
174
|
+
restaurant: z.ZodAny;
|
|
175
|
+
pf_restaurant: z.ZodAny;
|
|
176
|
+
refunded: z.ZodBoolean;
|
|
177
|
+
refundedFrom: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
178
|
+
}, "strip", z.ZodTypeAny, {
|
|
179
|
+
source?: any;
|
|
180
|
+
remark?: string | null | undefined;
|
|
181
|
+
restaurant?: any;
|
|
182
|
+
pf_restaurant?: any;
|
|
183
|
+
refundedFrom?: string | null | undefined;
|
|
184
|
+
pf_business?: any;
|
|
185
|
+
pf_member?: any;
|
|
186
|
+
ref: string;
|
|
187
|
+
_id: string;
|
|
188
|
+
createdAt: string;
|
|
189
|
+
from: {
|
|
190
|
+
normal: number;
|
|
191
|
+
free: {
|
|
192
|
+
_id: string;
|
|
193
|
+
amount: number;
|
|
194
|
+
expiredAt: string;
|
|
195
|
+
}[];
|
|
196
|
+
};
|
|
197
|
+
business: string;
|
|
198
|
+
member: string;
|
|
199
|
+
normal: number;
|
|
200
|
+
free: {
|
|
201
|
+
_id: string;
|
|
202
|
+
amount: number;
|
|
203
|
+
expiredAt: string;
|
|
204
|
+
}[];
|
|
205
|
+
to: {
|
|
206
|
+
normal: number;
|
|
207
|
+
free: {
|
|
208
|
+
_id: string;
|
|
209
|
+
amount: number;
|
|
210
|
+
expiredAt: string;
|
|
211
|
+
}[];
|
|
212
|
+
};
|
|
213
|
+
refunded: boolean;
|
|
214
|
+
}, {
|
|
215
|
+
source?: any;
|
|
216
|
+
remark?: string | null | undefined;
|
|
217
|
+
restaurant?: any;
|
|
218
|
+
pf_restaurant?: any;
|
|
219
|
+
refundedFrom?: string | null | undefined;
|
|
220
|
+
pf_business?: any;
|
|
221
|
+
pf_member?: any;
|
|
222
|
+
ref: string;
|
|
223
|
+
_id: string;
|
|
224
|
+
createdAt: string;
|
|
225
|
+
from: {
|
|
226
|
+
normal: number;
|
|
227
|
+
free: {
|
|
228
|
+
_id: string;
|
|
229
|
+
amount: number;
|
|
230
|
+
expiredAt: string;
|
|
231
|
+
}[];
|
|
232
|
+
};
|
|
233
|
+
business: string;
|
|
234
|
+
member: string;
|
|
235
|
+
normal: number;
|
|
236
|
+
free: {
|
|
237
|
+
_id: string;
|
|
238
|
+
amount: number;
|
|
239
|
+
expiredAt: string;
|
|
240
|
+
}[];
|
|
241
|
+
to: {
|
|
242
|
+
normal: number;
|
|
243
|
+
free: {
|
|
244
|
+
_id: string;
|
|
245
|
+
amount: number;
|
|
246
|
+
expiredAt: string;
|
|
247
|
+
}[];
|
|
248
|
+
};
|
|
249
|
+
refunded: boolean;
|
|
250
|
+
}>;
|
|
15
251
|
export type FdtoEffectValidationResult = z.infer<typeof FdtoEffectValidationResult>;
|
|
252
|
+
export type FdtoPayByCredit = z.infer<typeof FdtoPayByCredit>;
|
|
253
|
+
export type FdtoFreeCreditAsDiscount = z.infer<typeof FdtoFreeCreditAsDiscount>;
|
|
254
|
+
export type FdtoCreditTransaction = z.infer<typeof FdtoCreditTransaction>;
|
|
16
255
|
export {};
|