@feedmepos/mf-order-setting 0.0.60-prod → 0.0.63-prod
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-DRgZJgHO.js → KioskDevicesView-D-RZUu0W.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CZ6pa8Xh.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BKALec_y.js} +3 -3
- package/dist/{KioskSettingView-DVN4bTT4.js → KioskSettingView-BgDVaUU6.js} +3 -3
- package/dist/{KioskView-CmHhShkd.js → KioskView-CBDEN6lZ.js} +4 -4
- package/dist/OrderSettingsView-CrDwgef9.js +56883 -0
- package/dist/{app-D4H4nuew.js → app-BMblFPtQ.js} +2388 -2321
- package/dist/app.js +3 -3
- package/dist/{dayjs.min-DOI5QB21.js → dayjs.min-0LOWyVEQ.js} +1 -1
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +30 -3
- package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +20 -2
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/index-D5Ao4tWD.js +19656 -0
- package/dist/{index-BdJJKX0e.js → index-FP2iiNEg.js} +3 -3
- package/dist/menu.dto-BdFq_BB_.js +96924 -0
- package/dist/package/entity/booking/booking.do.d.ts +520 -45
- package/dist/package/entity/delivery/delivery.dto.d.ts +104 -9
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +114 -19
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +225 -45
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +426 -80
- package/dist/package/entity/member/member.dto.d.ts +84 -7
- package/dist/package/entity/order/order.dto.d.ts +112 -17
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +104 -9
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +104 -9
- package/dist/package/entity/order-platform/order-platform.dto.d.ts +75 -15
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +104 -9
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +120 -0
- package/dist/package/entity/queue/queue.dto.d.ts +6 -6
- package/package.json +3 -2
- package/src/views/order-settings/delivery/DeliverySetting.vue +2 -1
- package/src/views/order-settings/delivery/inhouse/CurrencyInput.vue +6 -5
- package/src/views/order-settings/delivery/inhouse/ZoneDialog.vue +8 -4
- package/src/views/order-settings/dine-in/DineInSetting.vue +4 -6
- package/src/views/order-settings/dine-in/PaymentType.vue +27 -22
- package/src/views/order-settings/general/GeneralSetting.vue +2 -1
- package/src/views/order-settings/queue/QueueSetting.vue +2 -1
- package/src/views/order-settings/sms/SmsSetting.vue +2 -1
- package/dist/OrderSettingsView-q1TUGzEA.js +0 -32195
- package/dist/index-CEeonoD9.js +0 -19758
- package/dist/menu.dto-BlTCG2YJ.js +0 -120873
|
@@ -17,18 +17,21 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
17
17
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18
18
|
key: z.ZodString;
|
|
19
19
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
20
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"
|
|
20
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
|
|
21
21
|
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
22
|
+
readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
22
23
|
}, "strip", z.ZodTypeAny, {
|
|
23
24
|
options?: any[] | null | undefined;
|
|
25
|
+
readonly?: boolean | null | undefined;
|
|
24
26
|
type: "string" | "number" | "boolean" | "date";
|
|
25
27
|
key: string;
|
|
26
|
-
entity: "restaurant" | "item" | "group" | "
|
|
28
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
27
29
|
}, {
|
|
28
30
|
options?: any[] | null | undefined;
|
|
31
|
+
readonly?: boolean | null | undefined;
|
|
29
32
|
type: "string" | "number" | "boolean" | "date";
|
|
30
33
|
key: string;
|
|
31
|
-
entity: "restaurant" | "item" | "group" | "
|
|
34
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
32
35
|
}>, "many">>>;
|
|
33
36
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
34
37
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -271,10 +274,48 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
271
274
|
customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
272
275
|
url: z.ZodString;
|
|
273
276
|
restaurantIds: z.ZodArray<z.ZodString, "many">;
|
|
277
|
+
schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
278
|
+
enabled: z.ZodBoolean;
|
|
279
|
+
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
280
|
+
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
281
|
+
startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
282
|
+
endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
283
|
+
repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
284
|
+
}, "strip", z.ZodTypeAny, {
|
|
285
|
+
endTime?: string | null | undefined;
|
|
286
|
+
startTime?: string | null | undefined;
|
|
287
|
+
startDate?: string | null | undefined;
|
|
288
|
+
endDate?: string | null | undefined;
|
|
289
|
+
repeatDays?: string[] | null | undefined;
|
|
290
|
+
enabled: boolean;
|
|
291
|
+
}, {
|
|
292
|
+
endTime?: string | null | undefined;
|
|
293
|
+
startTime?: string | null | undefined;
|
|
294
|
+
startDate?: string | null | undefined;
|
|
295
|
+
endDate?: string | null | undefined;
|
|
296
|
+
repeatDays?: string[] | null | undefined;
|
|
297
|
+
enabled: boolean;
|
|
298
|
+
}>>>;
|
|
274
299
|
}, "strip", z.ZodTypeAny, {
|
|
300
|
+
schedule?: {
|
|
301
|
+
endTime?: string | null | undefined;
|
|
302
|
+
startTime?: string | null | undefined;
|
|
303
|
+
startDate?: string | null | undefined;
|
|
304
|
+
endDate?: string | null | undefined;
|
|
305
|
+
repeatDays?: string[] | null | undefined;
|
|
306
|
+
enabled: boolean;
|
|
307
|
+
} | null | undefined;
|
|
275
308
|
url: string;
|
|
276
309
|
restaurantIds: string[];
|
|
277
310
|
}, {
|
|
311
|
+
schedule?: {
|
|
312
|
+
endTime?: string | null | undefined;
|
|
313
|
+
startTime?: string | null | undefined;
|
|
314
|
+
startDate?: string | null | undefined;
|
|
315
|
+
endDate?: string | null | undefined;
|
|
316
|
+
repeatDays?: string[] | null | undefined;
|
|
317
|
+
enabled: boolean;
|
|
318
|
+
} | null | undefined;
|
|
278
319
|
url: string;
|
|
279
320
|
restaurantIds: string[];
|
|
280
321
|
}>, "many">>>;
|
|
@@ -285,9 +326,10 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
285
326
|
agentId?: string | null | undefined;
|
|
286
327
|
attributeSettings?: {
|
|
287
328
|
options?: any[] | null | undefined;
|
|
329
|
+
readonly?: boolean | null | undefined;
|
|
288
330
|
type: "string" | "number" | "boolean" | "date";
|
|
289
331
|
key: string;
|
|
290
|
-
entity: "restaurant" | "item" | "group" | "
|
|
332
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
291
333
|
}[] | null | undefined;
|
|
292
334
|
pf_agent?: {
|
|
293
335
|
clickupId?: string | null | undefined;
|
|
@@ -336,6 +378,14 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
336
378
|
contact: string;
|
|
337
379
|
}[] | null | undefined;
|
|
338
380
|
customerDisplayImages?: {
|
|
381
|
+
schedule?: {
|
|
382
|
+
endTime?: string | null | undefined;
|
|
383
|
+
startTime?: string | null | undefined;
|
|
384
|
+
startDate?: string | null | undefined;
|
|
385
|
+
endDate?: string | null | undefined;
|
|
386
|
+
repeatDays?: string[] | null | undefined;
|
|
387
|
+
enabled: boolean;
|
|
388
|
+
} | null | undefined;
|
|
339
389
|
url: string;
|
|
340
390
|
restaurantIds: string[];
|
|
341
391
|
}[] | null | undefined;
|
|
@@ -352,9 +402,10 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
352
402
|
agentId?: string | null | undefined;
|
|
353
403
|
attributeSettings?: {
|
|
354
404
|
options?: any[] | null | undefined;
|
|
405
|
+
readonly?: boolean | null | undefined;
|
|
355
406
|
type: "string" | "number" | "boolean" | "date";
|
|
356
407
|
key: string;
|
|
357
|
-
entity: "restaurant" | "item" | "group" | "
|
|
408
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
358
409
|
}[] | null | undefined;
|
|
359
410
|
pf_agent?: {
|
|
360
411
|
clickupId?: string | null | undefined;
|
|
@@ -403,6 +454,14 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
403
454
|
contact: string;
|
|
404
455
|
}[] | null | undefined;
|
|
405
456
|
customerDisplayImages?: {
|
|
457
|
+
schedule?: {
|
|
458
|
+
endTime?: string | null | undefined;
|
|
459
|
+
startTime?: string | null | undefined;
|
|
460
|
+
startDate?: string | null | undefined;
|
|
461
|
+
endDate?: string | null | undefined;
|
|
462
|
+
repeatDays?: string[] | null | undefined;
|
|
463
|
+
enabled: boolean;
|
|
464
|
+
} | null | undefined;
|
|
406
465
|
url: string;
|
|
407
466
|
restaurantIds: string[];
|
|
408
467
|
}[] | null | undefined;
|
|
@@ -510,9 +569,10 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
510
569
|
agentId?: string | null | undefined;
|
|
511
570
|
attributeSettings?: {
|
|
512
571
|
options?: any[] | null | undefined;
|
|
572
|
+
readonly?: boolean | null | undefined;
|
|
513
573
|
type: "string" | "number" | "boolean" | "date";
|
|
514
574
|
key: string;
|
|
515
|
-
entity: "restaurant" | "item" | "group" | "
|
|
575
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
516
576
|
}[] | null | undefined;
|
|
517
577
|
pf_agent?: {
|
|
518
578
|
clickupId?: string | null | undefined;
|
|
@@ -561,6 +621,14 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
561
621
|
contact: string;
|
|
562
622
|
}[] | null | undefined;
|
|
563
623
|
customerDisplayImages?: {
|
|
624
|
+
schedule?: {
|
|
625
|
+
endTime?: string | null | undefined;
|
|
626
|
+
startTime?: string | null | undefined;
|
|
627
|
+
startDate?: string | null | undefined;
|
|
628
|
+
endDate?: string | null | undefined;
|
|
629
|
+
repeatDays?: string[] | null | undefined;
|
|
630
|
+
enabled: boolean;
|
|
631
|
+
} | null | undefined;
|
|
564
632
|
url: string;
|
|
565
633
|
restaurantIds: string[];
|
|
566
634
|
}[] | null | undefined;
|
|
@@ -612,9 +680,10 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
612
680
|
agentId?: string | null | undefined;
|
|
613
681
|
attributeSettings?: {
|
|
614
682
|
options?: any[] | null | undefined;
|
|
683
|
+
readonly?: boolean | null | undefined;
|
|
615
684
|
type: "string" | "number" | "boolean" | "date";
|
|
616
685
|
key: string;
|
|
617
|
-
entity: "restaurant" | "item" | "group" | "
|
|
686
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
618
687
|
}[] | null | undefined;
|
|
619
688
|
pf_agent?: {
|
|
620
689
|
clickupId?: string | null | undefined;
|
|
@@ -663,6 +732,14 @@ export declare const FdtoMember: z.ZodObject<z.extendShape<Omit<{
|
|
|
663
732
|
contact: string;
|
|
664
733
|
}[] | null | undefined;
|
|
665
734
|
customerDisplayImages?: {
|
|
735
|
+
schedule?: {
|
|
736
|
+
endTime?: string | null | undefined;
|
|
737
|
+
startTime?: string | null | undefined;
|
|
738
|
+
startDate?: string | null | undefined;
|
|
739
|
+
endDate?: string | null | undefined;
|
|
740
|
+
repeatDays?: string[] | null | undefined;
|
|
741
|
+
enabled: boolean;
|
|
742
|
+
} | null | undefined;
|
|
666
743
|
url: string;
|
|
667
744
|
restaurantIds: string[];
|
|
668
745
|
}[] | null | undefined;
|
|
@@ -13501,7 +13501,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13501
13501
|
target: "PAYMENT";
|
|
13502
13502
|
};
|
|
13503
13503
|
success: boolean;
|
|
13504
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13505
13504
|
adjustment: {
|
|
13506
13505
|
inclusive?: boolean | null | undefined;
|
|
13507
13506
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -13511,6 +13510,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13511
13510
|
};
|
|
13512
13511
|
};
|
|
13513
13512
|
referenceId: string;
|
|
13513
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13514
13514
|
}, {
|
|
13515
13515
|
reason?: string | null | undefined;
|
|
13516
13516
|
priority?: number | null | undefined;
|
|
@@ -13592,7 +13592,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13592
13592
|
target: "PAYMENT";
|
|
13593
13593
|
};
|
|
13594
13594
|
success: boolean;
|
|
13595
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13596
13595
|
adjustment: {
|
|
13597
13596
|
inclusive?: boolean | null | undefined;
|
|
13598
13597
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -13602,6 +13601,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13602
13601
|
};
|
|
13603
13602
|
};
|
|
13604
13603
|
referenceId: string;
|
|
13604
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13605
13605
|
}>>, "many">>;
|
|
13606
13606
|
option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
13607
13607
|
type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
|
|
@@ -15713,7 +15713,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15713
15713
|
target: "PAYMENT";
|
|
15714
15714
|
};
|
|
15715
15715
|
success: boolean;
|
|
15716
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15717
15716
|
adjustment: {
|
|
15718
15717
|
inclusive?: boolean | null | undefined;
|
|
15719
15718
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -15723,6 +15722,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15723
15722
|
};
|
|
15724
15723
|
};
|
|
15725
15724
|
referenceId: string;
|
|
15725
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15726
15726
|
})[];
|
|
15727
15727
|
orderAt: string;
|
|
15728
15728
|
}, {
|
|
@@ -16016,7 +16016,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
16016
16016
|
target: "PAYMENT";
|
|
16017
16017
|
};
|
|
16018
16018
|
success: boolean;
|
|
16019
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
16020
16019
|
adjustment: {
|
|
16021
16020
|
inclusive?: boolean | null | undefined;
|
|
16022
16021
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -16026,6 +16025,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
16026
16025
|
};
|
|
16027
16026
|
};
|
|
16028
16027
|
referenceId: string;
|
|
16028
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
16029
16029
|
})[] | undefined;
|
|
16030
16030
|
option: {
|
|
16031
16031
|
remark?: string | null | undefined;
|
|
@@ -18577,7 +18577,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18577
18577
|
target: "PAYMENT";
|
|
18578
18578
|
};
|
|
18579
18579
|
success: boolean;
|
|
18580
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18581
18580
|
adjustment: {
|
|
18582
18581
|
inclusive?: boolean | null | undefined;
|
|
18583
18582
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -18587,6 +18586,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18587
18586
|
};
|
|
18588
18587
|
};
|
|
18589
18588
|
referenceId: string;
|
|
18589
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18590
18590
|
}, {
|
|
18591
18591
|
reason?: string | null | undefined;
|
|
18592
18592
|
priority?: number | null | undefined;
|
|
@@ -18668,7 +18668,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18668
18668
|
target: "PAYMENT";
|
|
18669
18669
|
};
|
|
18670
18670
|
success: boolean;
|
|
18671
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18672
18671
|
adjustment: {
|
|
18673
18672
|
inclusive?: boolean | null | undefined;
|
|
18674
18673
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -18678,6 +18677,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18678
18677
|
};
|
|
18679
18678
|
};
|
|
18680
18679
|
referenceId: string;
|
|
18680
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18681
18681
|
}>>, "many">>;
|
|
18682
18682
|
option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
18683
18683
|
type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
|
|
@@ -20741,7 +20741,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
20741
20741
|
target: "PAYMENT";
|
|
20742
20742
|
};
|
|
20743
20743
|
success: boolean;
|
|
20744
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
20745
20744
|
adjustment: {
|
|
20746
20745
|
inclusive?: boolean | null | undefined;
|
|
20747
20746
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -20751,6 +20750,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
20751
20750
|
};
|
|
20752
20751
|
};
|
|
20753
20752
|
referenceId: string;
|
|
20753
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
20754
20754
|
})[];
|
|
20755
20755
|
orderAt: string;
|
|
20756
20756
|
}, {
|
|
@@ -20996,7 +20996,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
20996
20996
|
target: "PAYMENT";
|
|
20997
20997
|
};
|
|
20998
20998
|
success: boolean;
|
|
20999
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21000
20999
|
adjustment: {
|
|
21001
21000
|
inclusive?: boolean | null | undefined;
|
|
21002
21001
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -21006,6 +21005,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21006
21005
|
};
|
|
21007
21006
|
};
|
|
21008
21007
|
referenceId: string;
|
|
21008
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21009
21009
|
})[] | undefined;
|
|
21010
21010
|
option: {
|
|
21011
21011
|
remark?: string | null | undefined;
|
|
@@ -24830,18 +24830,21 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
24830
24830
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24831
24831
|
key: z.ZodString;
|
|
24832
24832
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
24833
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"
|
|
24833
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
|
|
24834
24834
|
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
24835
|
+
readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
24835
24836
|
}, "strip", z.ZodTypeAny, {
|
|
24836
24837
|
options?: any[] | null | undefined;
|
|
24838
|
+
readonly?: boolean | null | undefined;
|
|
24837
24839
|
type: "string" | "number" | "boolean" | "date";
|
|
24838
24840
|
key: string;
|
|
24839
|
-
entity: "restaurant" | "item" | "group" | "
|
|
24841
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
24840
24842
|
}, {
|
|
24841
24843
|
options?: any[] | null | undefined;
|
|
24844
|
+
readonly?: boolean | null | undefined;
|
|
24842
24845
|
type: "string" | "number" | "boolean" | "date";
|
|
24843
24846
|
key: string;
|
|
24844
|
-
entity: "restaurant" | "item" | "group" | "
|
|
24847
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
24845
24848
|
}>, "many">>>;
|
|
24846
24849
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
24847
24850
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -25084,10 +25087,48 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
25084
25087
|
customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25085
25088
|
url: z.ZodString;
|
|
25086
25089
|
restaurantIds: z.ZodArray<z.ZodString, "many">;
|
|
25090
|
+
schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
25091
|
+
enabled: z.ZodBoolean;
|
|
25092
|
+
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25093
|
+
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25094
|
+
startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25095
|
+
endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25096
|
+
repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
25097
|
+
}, "strip", z.ZodTypeAny, {
|
|
25098
|
+
endTime?: string | null | undefined;
|
|
25099
|
+
startTime?: string | null | undefined;
|
|
25100
|
+
startDate?: string | null | undefined;
|
|
25101
|
+
endDate?: string | null | undefined;
|
|
25102
|
+
repeatDays?: string[] | null | undefined;
|
|
25103
|
+
enabled: boolean;
|
|
25104
|
+
}, {
|
|
25105
|
+
endTime?: string | null | undefined;
|
|
25106
|
+
startTime?: string | null | undefined;
|
|
25107
|
+
startDate?: string | null | undefined;
|
|
25108
|
+
endDate?: string | null | undefined;
|
|
25109
|
+
repeatDays?: string[] | null | undefined;
|
|
25110
|
+
enabled: boolean;
|
|
25111
|
+
}>>>;
|
|
25087
25112
|
}, "strip", z.ZodTypeAny, {
|
|
25113
|
+
schedule?: {
|
|
25114
|
+
endTime?: string | null | undefined;
|
|
25115
|
+
startTime?: string | null | undefined;
|
|
25116
|
+
startDate?: string | null | undefined;
|
|
25117
|
+
endDate?: string | null | undefined;
|
|
25118
|
+
repeatDays?: string[] | null | undefined;
|
|
25119
|
+
enabled: boolean;
|
|
25120
|
+
} | null | undefined;
|
|
25088
25121
|
url: string;
|
|
25089
25122
|
restaurantIds: string[];
|
|
25090
25123
|
}, {
|
|
25124
|
+
schedule?: {
|
|
25125
|
+
endTime?: string | null | undefined;
|
|
25126
|
+
startTime?: string | null | undefined;
|
|
25127
|
+
startDate?: string | null | undefined;
|
|
25128
|
+
endDate?: string | null | undefined;
|
|
25129
|
+
repeatDays?: string[] | null | undefined;
|
|
25130
|
+
enabled: boolean;
|
|
25131
|
+
} | null | undefined;
|
|
25091
25132
|
url: string;
|
|
25092
25133
|
restaurantIds: string[];
|
|
25093
25134
|
}>, "many">>>;
|
|
@@ -25098,9 +25139,10 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
25098
25139
|
agentId?: string | null | undefined;
|
|
25099
25140
|
attributeSettings?: {
|
|
25100
25141
|
options?: any[] | null | undefined;
|
|
25142
|
+
readonly?: boolean | null | undefined;
|
|
25101
25143
|
type: "string" | "number" | "boolean" | "date";
|
|
25102
25144
|
key: string;
|
|
25103
|
-
entity: "restaurant" | "item" | "group" | "
|
|
25145
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
25104
25146
|
}[] | null | undefined;
|
|
25105
25147
|
pf_agent?: {
|
|
25106
25148
|
clickupId?: string | null | undefined;
|
|
@@ -25149,6 +25191,14 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
25149
25191
|
contact: string;
|
|
25150
25192
|
}[] | null | undefined;
|
|
25151
25193
|
customerDisplayImages?: {
|
|
25194
|
+
schedule?: {
|
|
25195
|
+
endTime?: string | null | undefined;
|
|
25196
|
+
startTime?: string | null | undefined;
|
|
25197
|
+
startDate?: string | null | undefined;
|
|
25198
|
+
endDate?: string | null | undefined;
|
|
25199
|
+
repeatDays?: string[] | null | undefined;
|
|
25200
|
+
enabled: boolean;
|
|
25201
|
+
} | null | undefined;
|
|
25152
25202
|
url: string;
|
|
25153
25203
|
restaurantIds: string[];
|
|
25154
25204
|
}[] | null | undefined;
|
|
@@ -25165,9 +25215,10 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
25165
25215
|
agentId?: string | null | undefined;
|
|
25166
25216
|
attributeSettings?: {
|
|
25167
25217
|
options?: any[] | null | undefined;
|
|
25218
|
+
readonly?: boolean | null | undefined;
|
|
25168
25219
|
type: "string" | "number" | "boolean" | "date";
|
|
25169
25220
|
key: string;
|
|
25170
|
-
entity: "restaurant" | "item" | "group" | "
|
|
25221
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
25171
25222
|
}[] | null | undefined;
|
|
25172
25223
|
pf_agent?: {
|
|
25173
25224
|
clickupId?: string | null | undefined;
|
|
@@ -25216,6 +25267,14 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
25216
25267
|
contact: string;
|
|
25217
25268
|
}[] | null | undefined;
|
|
25218
25269
|
customerDisplayImages?: {
|
|
25270
|
+
schedule?: {
|
|
25271
|
+
endTime?: string | null | undefined;
|
|
25272
|
+
startTime?: string | null | undefined;
|
|
25273
|
+
startDate?: string | null | undefined;
|
|
25274
|
+
endDate?: string | null | undefined;
|
|
25275
|
+
repeatDays?: string[] | null | undefined;
|
|
25276
|
+
enabled: boolean;
|
|
25277
|
+
} | null | undefined;
|
|
25219
25278
|
url: string;
|
|
25220
25279
|
restaurantIds: string[];
|
|
25221
25280
|
}[] | null | undefined;
|
|
@@ -26820,9 +26879,10 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
26820
26879
|
agentId?: string | null | undefined;
|
|
26821
26880
|
attributeSettings?: {
|
|
26822
26881
|
options?: any[] | null | undefined;
|
|
26882
|
+
readonly?: boolean | null | undefined;
|
|
26823
26883
|
type: "string" | "number" | "boolean" | "date";
|
|
26824
26884
|
key: string;
|
|
26825
|
-
entity: "restaurant" | "item" | "group" | "
|
|
26885
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
26826
26886
|
}[] | null | undefined;
|
|
26827
26887
|
pf_agent?: {
|
|
26828
26888
|
clickupId?: string | null | undefined;
|
|
@@ -26871,6 +26931,14 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
26871
26931
|
contact: string;
|
|
26872
26932
|
}[] | null | undefined;
|
|
26873
26933
|
customerDisplayImages?: {
|
|
26934
|
+
schedule?: {
|
|
26935
|
+
endTime?: string | null | undefined;
|
|
26936
|
+
startTime?: string | null | undefined;
|
|
26937
|
+
startDate?: string | null | undefined;
|
|
26938
|
+
endDate?: string | null | undefined;
|
|
26939
|
+
repeatDays?: string[] | null | undefined;
|
|
26940
|
+
enabled: boolean;
|
|
26941
|
+
} | null | undefined;
|
|
26874
26942
|
url: string;
|
|
26875
26943
|
restaurantIds: string[];
|
|
26876
26944
|
}[] | null | undefined;
|
|
@@ -27152,9 +27220,10 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
27152
27220
|
agentId?: string | null | undefined;
|
|
27153
27221
|
attributeSettings?: {
|
|
27154
27222
|
options?: any[] | null | undefined;
|
|
27223
|
+
readonly?: boolean | null | undefined;
|
|
27155
27224
|
type: "string" | "number" | "boolean" | "date";
|
|
27156
27225
|
key: string;
|
|
27157
|
-
entity: "restaurant" | "item" | "group" | "
|
|
27226
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
27158
27227
|
}[] | null | undefined;
|
|
27159
27228
|
pf_agent?: {
|
|
27160
27229
|
clickupId?: string | null | undefined;
|
|
@@ -27203,6 +27272,14 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
27203
27272
|
contact: string;
|
|
27204
27273
|
}[] | null | undefined;
|
|
27205
27274
|
customerDisplayImages?: {
|
|
27275
|
+
schedule?: {
|
|
27276
|
+
endTime?: string | null | undefined;
|
|
27277
|
+
startTime?: string | null | undefined;
|
|
27278
|
+
startDate?: string | null | undefined;
|
|
27279
|
+
endDate?: string | null | undefined;
|
|
27280
|
+
repeatDays?: string[] | null | undefined;
|
|
27281
|
+
enabled: boolean;
|
|
27282
|
+
} | null | undefined;
|
|
27206
27283
|
url: string;
|
|
27207
27284
|
restaurantIds: string[];
|
|
27208
27285
|
}[] | null | undefined;
|
|
@@ -29318,9 +29395,10 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
29318
29395
|
agentId?: string | null | undefined;
|
|
29319
29396
|
attributeSettings?: {
|
|
29320
29397
|
options?: any[] | null | undefined;
|
|
29398
|
+
readonly?: boolean | null | undefined;
|
|
29321
29399
|
type: "string" | "number" | "boolean" | "date";
|
|
29322
29400
|
key: string;
|
|
29323
|
-
entity: "restaurant" | "item" | "group" | "
|
|
29401
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
29324
29402
|
}[] | null | undefined;
|
|
29325
29403
|
pf_agent?: {
|
|
29326
29404
|
clickupId?: string | null | undefined;
|
|
@@ -29369,6 +29447,14 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
29369
29447
|
contact: string;
|
|
29370
29448
|
}[] | null | undefined;
|
|
29371
29449
|
customerDisplayImages?: {
|
|
29450
|
+
schedule?: {
|
|
29451
|
+
endTime?: string | null | undefined;
|
|
29452
|
+
startTime?: string | null | undefined;
|
|
29453
|
+
startDate?: string | null | undefined;
|
|
29454
|
+
endDate?: string | null | undefined;
|
|
29455
|
+
repeatDays?: string[] | null | undefined;
|
|
29456
|
+
enabled: boolean;
|
|
29457
|
+
} | null | undefined;
|
|
29372
29458
|
url: string;
|
|
29373
29459
|
restaurantIds: string[];
|
|
29374
29460
|
}[] | null | undefined;
|
|
@@ -29959,9 +30045,10 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
29959
30045
|
agentId?: string | null | undefined;
|
|
29960
30046
|
attributeSettings?: {
|
|
29961
30047
|
options?: any[] | null | undefined;
|
|
30048
|
+
readonly?: boolean | null | undefined;
|
|
29962
30049
|
type: "string" | "number" | "boolean" | "date";
|
|
29963
30050
|
key: string;
|
|
29964
|
-
entity: "restaurant" | "item" | "group" | "
|
|
30051
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
29965
30052
|
}[] | null | undefined;
|
|
29966
30053
|
pf_agent?: {
|
|
29967
30054
|
clickupId?: string | null | undefined;
|
|
@@ -30010,6 +30097,14 @@ export declare const OrderPOSGetDto: z.ZodObject<{
|
|
|
30010
30097
|
contact: string;
|
|
30011
30098
|
}[] | null | undefined;
|
|
30012
30099
|
customerDisplayImages?: {
|
|
30100
|
+
schedule?: {
|
|
30101
|
+
endTime?: string | null | undefined;
|
|
30102
|
+
startTime?: string | null | undefined;
|
|
30103
|
+
startDate?: string | null | undefined;
|
|
30104
|
+
endDate?: string | null | undefined;
|
|
30105
|
+
repeatDays?: string[] | null | undefined;
|
|
30106
|
+
enabled: boolean;
|
|
30107
|
+
} | null | undefined;
|
|
30013
30108
|
url: string;
|
|
30014
30109
|
restaurantIds: string[];
|
|
30015
30110
|
}[] | null | undefined;
|