@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
|
@@ -7571,18 +7571,21 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
7571
7571
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7572
7572
|
key: z.ZodString;
|
|
7573
7573
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
7574
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"
|
|
7574
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
|
|
7575
7575
|
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
7576
|
+
readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
7576
7577
|
}, "strip", z.ZodTypeAny, {
|
|
7577
7578
|
options?: any[] | null | undefined;
|
|
7579
|
+
readonly?: boolean | null | undefined;
|
|
7578
7580
|
type: "string" | "number" | "boolean" | "date";
|
|
7579
7581
|
key: string;
|
|
7580
|
-
entity: "restaurant" | "item" | "group" | "
|
|
7582
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
7581
7583
|
}, {
|
|
7582
7584
|
options?: any[] | null | undefined;
|
|
7585
|
+
readonly?: boolean | null | undefined;
|
|
7583
7586
|
type: "string" | "number" | "boolean" | "date";
|
|
7584
7587
|
key: string;
|
|
7585
|
-
entity: "restaurant" | "item" | "group" | "
|
|
7588
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
7586
7589
|
}>, "many">>>;
|
|
7587
7590
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
7588
7591
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7825,10 +7828,48 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
7825
7828
|
customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7826
7829
|
url: z.ZodString;
|
|
7827
7830
|
restaurantIds: z.ZodArray<z.ZodString, "many">;
|
|
7831
|
+
schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
7832
|
+
enabled: z.ZodBoolean;
|
|
7833
|
+
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7834
|
+
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7835
|
+
startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7836
|
+
endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7837
|
+
repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
7838
|
+
}, "strip", z.ZodTypeAny, {
|
|
7839
|
+
endTime?: string | null | undefined;
|
|
7840
|
+
startTime?: string | null | undefined;
|
|
7841
|
+
startDate?: string | null | undefined;
|
|
7842
|
+
endDate?: string | null | undefined;
|
|
7843
|
+
repeatDays?: string[] | null | undefined;
|
|
7844
|
+
enabled: boolean;
|
|
7845
|
+
}, {
|
|
7846
|
+
endTime?: string | null | undefined;
|
|
7847
|
+
startTime?: string | null | undefined;
|
|
7848
|
+
startDate?: string | null | undefined;
|
|
7849
|
+
endDate?: string | null | undefined;
|
|
7850
|
+
repeatDays?: string[] | null | undefined;
|
|
7851
|
+
enabled: boolean;
|
|
7852
|
+
}>>>;
|
|
7828
7853
|
}, "strip", z.ZodTypeAny, {
|
|
7854
|
+
schedule?: {
|
|
7855
|
+
endTime?: string | null | undefined;
|
|
7856
|
+
startTime?: string | null | undefined;
|
|
7857
|
+
startDate?: string | null | undefined;
|
|
7858
|
+
endDate?: string | null | undefined;
|
|
7859
|
+
repeatDays?: string[] | null | undefined;
|
|
7860
|
+
enabled: boolean;
|
|
7861
|
+
} | null | undefined;
|
|
7829
7862
|
url: string;
|
|
7830
7863
|
restaurantIds: string[];
|
|
7831
7864
|
}, {
|
|
7865
|
+
schedule?: {
|
|
7866
|
+
endTime?: string | null | undefined;
|
|
7867
|
+
startTime?: string | null | undefined;
|
|
7868
|
+
startDate?: string | null | undefined;
|
|
7869
|
+
endDate?: string | null | undefined;
|
|
7870
|
+
repeatDays?: string[] | null | undefined;
|
|
7871
|
+
enabled: boolean;
|
|
7872
|
+
} | null | undefined;
|
|
7832
7873
|
url: string;
|
|
7833
7874
|
restaurantIds: string[];
|
|
7834
7875
|
}>, "many">>>;
|
|
@@ -7839,9 +7880,10 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
7839
7880
|
agentId?: string | null | undefined;
|
|
7840
7881
|
attributeSettings?: {
|
|
7841
7882
|
options?: any[] | null | undefined;
|
|
7883
|
+
readonly?: boolean | null | undefined;
|
|
7842
7884
|
type: "string" | "number" | "boolean" | "date";
|
|
7843
7885
|
key: string;
|
|
7844
|
-
entity: "restaurant" | "item" | "group" | "
|
|
7886
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
7845
7887
|
}[] | null | undefined;
|
|
7846
7888
|
pf_agent?: {
|
|
7847
7889
|
clickupId?: string | null | undefined;
|
|
@@ -7890,6 +7932,14 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
7890
7932
|
contact: string;
|
|
7891
7933
|
}[] | null | undefined;
|
|
7892
7934
|
customerDisplayImages?: {
|
|
7935
|
+
schedule?: {
|
|
7936
|
+
endTime?: string | null | undefined;
|
|
7937
|
+
startTime?: string | null | undefined;
|
|
7938
|
+
startDate?: string | null | undefined;
|
|
7939
|
+
endDate?: string | null | undefined;
|
|
7940
|
+
repeatDays?: string[] | null | undefined;
|
|
7941
|
+
enabled: boolean;
|
|
7942
|
+
} | null | undefined;
|
|
7893
7943
|
url: string;
|
|
7894
7944
|
restaurantIds: string[];
|
|
7895
7945
|
}[] | null | undefined;
|
|
@@ -7906,9 +7956,10 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
7906
7956
|
agentId?: string | null | undefined;
|
|
7907
7957
|
attributeSettings?: {
|
|
7908
7958
|
options?: any[] | null | undefined;
|
|
7959
|
+
readonly?: boolean | null | undefined;
|
|
7909
7960
|
type: "string" | "number" | "boolean" | "date";
|
|
7910
7961
|
key: string;
|
|
7911
|
-
entity: "restaurant" | "item" | "group" | "
|
|
7962
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
7912
7963
|
}[] | null | undefined;
|
|
7913
7964
|
pf_agent?: {
|
|
7914
7965
|
clickupId?: string | null | undefined;
|
|
@@ -7957,6 +8008,14 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
7957
8008
|
contact: string;
|
|
7958
8009
|
}[] | null | undefined;
|
|
7959
8010
|
customerDisplayImages?: {
|
|
8011
|
+
schedule?: {
|
|
8012
|
+
endTime?: string | null | undefined;
|
|
8013
|
+
startTime?: string | null | undefined;
|
|
8014
|
+
startDate?: string | null | undefined;
|
|
8015
|
+
endDate?: string | null | undefined;
|
|
8016
|
+
repeatDays?: string[] | null | undefined;
|
|
8017
|
+
enabled: boolean;
|
|
8018
|
+
} | null | undefined;
|
|
7960
8019
|
url: string;
|
|
7961
8020
|
restaurantIds: string[];
|
|
7962
8021
|
}[] | null | undefined;
|
|
@@ -9561,9 +9620,10 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
9561
9620
|
agentId?: string | null | undefined;
|
|
9562
9621
|
attributeSettings?: {
|
|
9563
9622
|
options?: any[] | null | undefined;
|
|
9623
|
+
readonly?: boolean | null | undefined;
|
|
9564
9624
|
type: "string" | "number" | "boolean" | "date";
|
|
9565
9625
|
key: string;
|
|
9566
|
-
entity: "restaurant" | "item" | "group" | "
|
|
9626
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
9567
9627
|
}[] | null | undefined;
|
|
9568
9628
|
pf_agent?: {
|
|
9569
9629
|
clickupId?: string | null | undefined;
|
|
@@ -9612,6 +9672,14 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
9612
9672
|
contact: string;
|
|
9613
9673
|
}[] | null | undefined;
|
|
9614
9674
|
customerDisplayImages?: {
|
|
9675
|
+
schedule?: {
|
|
9676
|
+
endTime?: string | null | undefined;
|
|
9677
|
+
startTime?: string | null | undefined;
|
|
9678
|
+
startDate?: string | null | undefined;
|
|
9679
|
+
endDate?: string | null | undefined;
|
|
9680
|
+
repeatDays?: string[] | null | undefined;
|
|
9681
|
+
enabled: boolean;
|
|
9682
|
+
} | null | undefined;
|
|
9615
9683
|
url: string;
|
|
9616
9684
|
restaurantIds: string[];
|
|
9617
9685
|
}[] | null | undefined;
|
|
@@ -9893,9 +9961,10 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
9893
9961
|
agentId?: string | null | undefined;
|
|
9894
9962
|
attributeSettings?: {
|
|
9895
9963
|
options?: any[] | null | undefined;
|
|
9964
|
+
readonly?: boolean | null | undefined;
|
|
9896
9965
|
type: "string" | "number" | "boolean" | "date";
|
|
9897
9966
|
key: string;
|
|
9898
|
-
entity: "restaurant" | "item" | "group" | "
|
|
9967
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
9899
9968
|
}[] | null | undefined;
|
|
9900
9969
|
pf_agent?: {
|
|
9901
9970
|
clickupId?: string | null | undefined;
|
|
@@ -9944,6 +10013,14 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
9944
10013
|
contact: string;
|
|
9945
10014
|
}[] | null | undefined;
|
|
9946
10015
|
customerDisplayImages?: {
|
|
10016
|
+
schedule?: {
|
|
10017
|
+
endTime?: string | null | undefined;
|
|
10018
|
+
startTime?: string | null | undefined;
|
|
10019
|
+
startDate?: string | null | undefined;
|
|
10020
|
+
endDate?: string | null | undefined;
|
|
10021
|
+
repeatDays?: string[] | null | undefined;
|
|
10022
|
+
enabled: boolean;
|
|
10023
|
+
} | null | undefined;
|
|
9947
10024
|
url: string;
|
|
9948
10025
|
restaurantIds: string[];
|
|
9949
10026
|
}[] | null | undefined;
|
|
@@ -10245,9 +10322,10 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
10245
10322
|
agentId?: string | null | undefined;
|
|
10246
10323
|
attributeSettings?: {
|
|
10247
10324
|
options?: any[] | null | undefined;
|
|
10325
|
+
readonly?: boolean | null | undefined;
|
|
10248
10326
|
type: "string" | "number" | "boolean" | "date";
|
|
10249
10327
|
key: string;
|
|
10250
|
-
entity: "restaurant" | "item" | "group" | "
|
|
10328
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
10251
10329
|
}[] | null | undefined;
|
|
10252
10330
|
pf_agent?: {
|
|
10253
10331
|
clickupId?: string | null | undefined;
|
|
@@ -10296,6 +10374,14 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
10296
10374
|
contact: string;
|
|
10297
10375
|
}[] | null | undefined;
|
|
10298
10376
|
customerDisplayImages?: {
|
|
10377
|
+
schedule?: {
|
|
10378
|
+
endTime?: string | null | undefined;
|
|
10379
|
+
startTime?: string | null | undefined;
|
|
10380
|
+
startDate?: string | null | undefined;
|
|
10381
|
+
endDate?: string | null | undefined;
|
|
10382
|
+
repeatDays?: string[] | null | undefined;
|
|
10383
|
+
enabled: boolean;
|
|
10384
|
+
} | null | undefined;
|
|
10299
10385
|
url: string;
|
|
10300
10386
|
restaurantIds: string[];
|
|
10301
10387
|
}[] | null | undefined;
|
|
@@ -10619,9 +10705,10 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
10619
10705
|
agentId?: string | null | undefined;
|
|
10620
10706
|
attributeSettings?: {
|
|
10621
10707
|
options?: any[] | null | undefined;
|
|
10708
|
+
readonly?: boolean | null | undefined;
|
|
10622
10709
|
type: "string" | "number" | "boolean" | "date";
|
|
10623
10710
|
key: string;
|
|
10624
|
-
entity: "restaurant" | "item" | "group" | "
|
|
10711
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
10625
10712
|
}[] | null | undefined;
|
|
10626
10713
|
pf_agent?: {
|
|
10627
10714
|
clickupId?: string | null | undefined;
|
|
@@ -10670,6 +10757,14 @@ declare const FdtoCreateDelivery: z.ZodObject<{
|
|
|
10670
10757
|
contact: string;
|
|
10671
10758
|
}[] | null | undefined;
|
|
10672
10759
|
customerDisplayImages?: {
|
|
10760
|
+
schedule?: {
|
|
10761
|
+
endTime?: string | null | undefined;
|
|
10762
|
+
startTime?: string | null | undefined;
|
|
10763
|
+
startDate?: string | null | undefined;
|
|
10764
|
+
endDate?: string | null | undefined;
|
|
10765
|
+
repeatDays?: string[] | null | undefined;
|
|
10766
|
+
enabled: boolean;
|
|
10767
|
+
} | null | undefined;
|
|
10673
10768
|
url: string;
|
|
10674
10769
|
restaurantIds: string[];
|
|
10675
10770
|
}[] | null | undefined;
|
|
@@ -4016,7 +4016,6 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
4016
4016
|
target: "PAYMENT";
|
|
4017
4017
|
};
|
|
4018
4018
|
success: boolean;
|
|
4019
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
4020
4019
|
adjustment: {
|
|
4021
4020
|
inclusive?: boolean | null | undefined;
|
|
4022
4021
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -4026,6 +4025,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
4026
4025
|
};
|
|
4027
4026
|
};
|
|
4028
4027
|
referenceId: string;
|
|
4028
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
4029
4029
|
}, {
|
|
4030
4030
|
reason?: string | null | undefined;
|
|
4031
4031
|
priority?: number | null | undefined;
|
|
@@ -4107,7 +4107,6 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
4107
4107
|
target: "PAYMENT";
|
|
4108
4108
|
};
|
|
4109
4109
|
success: boolean;
|
|
4110
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
4111
4110
|
adjustment: {
|
|
4112
4111
|
inclusive?: boolean | null | undefined;
|
|
4113
4112
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -4117,6 +4116,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
4117
4116
|
};
|
|
4118
4117
|
};
|
|
4119
4118
|
referenceId: string;
|
|
4119
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
4120
4120
|
}>, "many">>>;
|
|
4121
4121
|
option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
4122
4122
|
type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
|
|
@@ -5183,18 +5183,21 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5183
5183
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5184
5184
|
key: z.ZodString;
|
|
5185
5185
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
5186
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"
|
|
5186
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
|
|
5187
5187
|
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
5188
|
+
readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
5188
5189
|
}, "strip", z.ZodTypeAny, {
|
|
5189
5190
|
options?: any[] | null | undefined;
|
|
5191
|
+
readonly?: boolean | null | undefined;
|
|
5190
5192
|
type: "string" | "number" | "boolean" | "date";
|
|
5191
5193
|
key: string;
|
|
5192
|
-
entity: "restaurant" | "item" | "group" | "
|
|
5194
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
5193
5195
|
}, {
|
|
5194
5196
|
options?: any[] | null | undefined;
|
|
5197
|
+
readonly?: boolean | null | undefined;
|
|
5195
5198
|
type: "string" | "number" | "boolean" | "date";
|
|
5196
5199
|
key: string;
|
|
5197
|
-
entity: "restaurant" | "item" | "group" | "
|
|
5200
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
5198
5201
|
}>, "many">>>;
|
|
5199
5202
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
5200
5203
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -5437,10 +5440,48 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5437
5440
|
customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5438
5441
|
url: z.ZodString;
|
|
5439
5442
|
restaurantIds: z.ZodArray<z.ZodString, "many">;
|
|
5443
|
+
schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5444
|
+
enabled: z.ZodBoolean;
|
|
5445
|
+
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5446
|
+
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5447
|
+
startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5448
|
+
endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5449
|
+
repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5450
|
+
}, "strip", z.ZodTypeAny, {
|
|
5451
|
+
endTime?: string | null | undefined;
|
|
5452
|
+
startTime?: string | null | undefined;
|
|
5453
|
+
startDate?: string | null | undefined;
|
|
5454
|
+
endDate?: string | null | undefined;
|
|
5455
|
+
repeatDays?: string[] | null | undefined;
|
|
5456
|
+
enabled: boolean;
|
|
5457
|
+
}, {
|
|
5458
|
+
endTime?: string | null | undefined;
|
|
5459
|
+
startTime?: string | null | undefined;
|
|
5460
|
+
startDate?: string | null | undefined;
|
|
5461
|
+
endDate?: string | null | undefined;
|
|
5462
|
+
repeatDays?: string[] | null | undefined;
|
|
5463
|
+
enabled: boolean;
|
|
5464
|
+
}>>>;
|
|
5440
5465
|
}, "strip", z.ZodTypeAny, {
|
|
5466
|
+
schedule?: {
|
|
5467
|
+
endTime?: string | null | undefined;
|
|
5468
|
+
startTime?: string | null | undefined;
|
|
5469
|
+
startDate?: string | null | undefined;
|
|
5470
|
+
endDate?: string | null | undefined;
|
|
5471
|
+
repeatDays?: string[] | null | undefined;
|
|
5472
|
+
enabled: boolean;
|
|
5473
|
+
} | null | undefined;
|
|
5441
5474
|
url: string;
|
|
5442
5475
|
restaurantIds: string[];
|
|
5443
5476
|
}, {
|
|
5477
|
+
schedule?: {
|
|
5478
|
+
endTime?: string | null | undefined;
|
|
5479
|
+
startTime?: string | null | undefined;
|
|
5480
|
+
startDate?: string | null | undefined;
|
|
5481
|
+
endDate?: string | null | undefined;
|
|
5482
|
+
repeatDays?: string[] | null | undefined;
|
|
5483
|
+
enabled: boolean;
|
|
5484
|
+
} | null | undefined;
|
|
5444
5485
|
url: string;
|
|
5445
5486
|
restaurantIds: string[];
|
|
5446
5487
|
}>, "many">>>;
|
|
@@ -5451,9 +5492,10 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5451
5492
|
agentId?: string | null | undefined;
|
|
5452
5493
|
attributeSettings?: {
|
|
5453
5494
|
options?: any[] | null | undefined;
|
|
5495
|
+
readonly?: boolean | null | undefined;
|
|
5454
5496
|
type: "string" | "number" | "boolean" | "date";
|
|
5455
5497
|
key: string;
|
|
5456
|
-
entity: "restaurant" | "item" | "group" | "
|
|
5498
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
5457
5499
|
}[] | null | undefined;
|
|
5458
5500
|
pf_agent?: {
|
|
5459
5501
|
clickupId?: string | null | undefined;
|
|
@@ -5502,6 +5544,14 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5502
5544
|
contact: string;
|
|
5503
5545
|
}[] | null | undefined;
|
|
5504
5546
|
customerDisplayImages?: {
|
|
5547
|
+
schedule?: {
|
|
5548
|
+
endTime?: string | null | undefined;
|
|
5549
|
+
startTime?: string | null | undefined;
|
|
5550
|
+
startDate?: string | null | undefined;
|
|
5551
|
+
endDate?: string | null | undefined;
|
|
5552
|
+
repeatDays?: string[] | null | undefined;
|
|
5553
|
+
enabled: boolean;
|
|
5554
|
+
} | null | undefined;
|
|
5505
5555
|
url: string;
|
|
5506
5556
|
restaurantIds: string[];
|
|
5507
5557
|
}[] | null | undefined;
|
|
@@ -5518,9 +5568,10 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5518
5568
|
agentId?: string | null | undefined;
|
|
5519
5569
|
attributeSettings?: {
|
|
5520
5570
|
options?: any[] | null | undefined;
|
|
5571
|
+
readonly?: boolean | null | undefined;
|
|
5521
5572
|
type: "string" | "number" | "boolean" | "date";
|
|
5522
5573
|
key: string;
|
|
5523
|
-
entity: "restaurant" | "item" | "group" | "
|
|
5574
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
5524
5575
|
}[] | null | undefined;
|
|
5525
5576
|
pf_agent?: {
|
|
5526
5577
|
clickupId?: string | null | undefined;
|
|
@@ -5569,6 +5620,14 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5569
5620
|
contact: string;
|
|
5570
5621
|
}[] | null | undefined;
|
|
5571
5622
|
customerDisplayImages?: {
|
|
5623
|
+
schedule?: {
|
|
5624
|
+
endTime?: string | null | undefined;
|
|
5625
|
+
startTime?: string | null | undefined;
|
|
5626
|
+
startDate?: string | null | undefined;
|
|
5627
|
+
endDate?: string | null | undefined;
|
|
5628
|
+
repeatDays?: string[] | null | undefined;
|
|
5629
|
+
enabled: boolean;
|
|
5630
|
+
} | null | undefined;
|
|
5572
5631
|
url: string;
|
|
5573
5632
|
restaurantIds: string[];
|
|
5574
5633
|
}[] | null | undefined;
|
|
@@ -5674,9 +5733,10 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5674
5733
|
agentId?: string | null | undefined;
|
|
5675
5734
|
attributeSettings?: {
|
|
5676
5735
|
options?: any[] | null | undefined;
|
|
5736
|
+
readonly?: boolean | null | undefined;
|
|
5677
5737
|
type: "string" | "number" | "boolean" | "date";
|
|
5678
5738
|
key: string;
|
|
5679
|
-
entity: "restaurant" | "item" | "group" | "
|
|
5739
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
5680
5740
|
}[] | null | undefined;
|
|
5681
5741
|
pf_agent?: {
|
|
5682
5742
|
clickupId?: string | null | undefined;
|
|
@@ -5725,6 +5785,14 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5725
5785
|
contact: string;
|
|
5726
5786
|
}[] | null | undefined;
|
|
5727
5787
|
customerDisplayImages?: {
|
|
5788
|
+
schedule?: {
|
|
5789
|
+
endTime?: string | null | undefined;
|
|
5790
|
+
startTime?: string | null | undefined;
|
|
5791
|
+
startDate?: string | null | undefined;
|
|
5792
|
+
endDate?: string | null | undefined;
|
|
5793
|
+
repeatDays?: string[] | null | undefined;
|
|
5794
|
+
enabled: boolean;
|
|
5795
|
+
} | null | undefined;
|
|
5728
5796
|
url: string;
|
|
5729
5797
|
restaurantIds: string[];
|
|
5730
5798
|
}[] | null | undefined;
|
|
@@ -5776,9 +5844,10 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5776
5844
|
agentId?: string | null | undefined;
|
|
5777
5845
|
attributeSettings?: {
|
|
5778
5846
|
options?: any[] | null | undefined;
|
|
5847
|
+
readonly?: boolean | null | undefined;
|
|
5779
5848
|
type: "string" | "number" | "boolean" | "date";
|
|
5780
5849
|
key: string;
|
|
5781
|
-
entity: "restaurant" | "item" | "group" | "
|
|
5850
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
5782
5851
|
}[] | null | undefined;
|
|
5783
5852
|
pf_agent?: {
|
|
5784
5853
|
clickupId?: string | null | undefined;
|
|
@@ -5827,6 +5896,14 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
5827
5896
|
contact: string;
|
|
5828
5897
|
}[] | null | undefined;
|
|
5829
5898
|
customerDisplayImages?: {
|
|
5899
|
+
schedule?: {
|
|
5900
|
+
endTime?: string | null | undefined;
|
|
5901
|
+
startTime?: string | null | undefined;
|
|
5902
|
+
startDate?: string | null | undefined;
|
|
5903
|
+
endDate?: string | null | undefined;
|
|
5904
|
+
repeatDays?: string[] | null | undefined;
|
|
5905
|
+
enabled: boolean;
|
|
5906
|
+
} | null | undefined;
|
|
5830
5907
|
url: string;
|
|
5831
5908
|
restaurantIds: string[];
|
|
5832
5909
|
}[] | null | undefined;
|
|
@@ -6116,23 +6193,23 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6116
6193
|
}, "strip", z.ZodTypeAny, {
|
|
6117
6194
|
name: string;
|
|
6118
6195
|
id: string;
|
|
6196
|
+
timeStamp: string;
|
|
6119
6197
|
from: {
|
|
6120
6198
|
name: string;
|
|
6121
6199
|
};
|
|
6122
6200
|
to: {
|
|
6123
6201
|
name: string;
|
|
6124
6202
|
};
|
|
6125
|
-
timeStamp: string;
|
|
6126
6203
|
}, {
|
|
6127
6204
|
name: string;
|
|
6128
6205
|
id: string;
|
|
6206
|
+
timeStamp: string;
|
|
6129
6207
|
from: {
|
|
6130
6208
|
name: string;
|
|
6131
6209
|
};
|
|
6132
6210
|
to: {
|
|
6133
6211
|
name: string;
|
|
6134
6212
|
};
|
|
6135
|
-
timeStamp: string;
|
|
6136
6213
|
}>, "many">>>;
|
|
6137
6214
|
}, "strip", z.ZodTypeAny, {
|
|
6138
6215
|
by?: {
|
|
@@ -6153,13 +6230,13 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6153
6230
|
changePaymentActivity?: {
|
|
6154
6231
|
name: string;
|
|
6155
6232
|
id: string;
|
|
6233
|
+
timeStamp: string;
|
|
6156
6234
|
from: {
|
|
6157
6235
|
name: string;
|
|
6158
6236
|
};
|
|
6159
6237
|
to: {
|
|
6160
6238
|
name: string;
|
|
6161
6239
|
};
|
|
6162
|
-
timeStamp: string;
|
|
6163
6240
|
}[] | null | undefined;
|
|
6164
6241
|
change: {
|
|
6165
6242
|
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";
|
|
@@ -6198,13 +6275,13 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6198
6275
|
changePaymentActivity?: {
|
|
6199
6276
|
name: string;
|
|
6200
6277
|
id: string;
|
|
6278
|
+
timeStamp: string;
|
|
6201
6279
|
from: {
|
|
6202
6280
|
name: string;
|
|
6203
6281
|
};
|
|
6204
6282
|
to: {
|
|
6205
6283
|
name: string;
|
|
6206
6284
|
};
|
|
6207
|
-
timeStamp: string;
|
|
6208
6285
|
}[] | null | undefined;
|
|
6209
6286
|
change: {
|
|
6210
6287
|
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";
|
|
@@ -6338,7 +6415,6 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6338
6415
|
target: "PAYMENT";
|
|
6339
6416
|
};
|
|
6340
6417
|
success: boolean;
|
|
6341
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
6342
6418
|
adjustment: {
|
|
6343
6419
|
inclusive?: boolean | null | undefined;
|
|
6344
6420
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -6348,6 +6424,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6348
6424
|
};
|
|
6349
6425
|
};
|
|
6350
6426
|
referenceId: string;
|
|
6427
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
6351
6428
|
}[] | null | undefined;
|
|
6352
6429
|
roundToNearest?: number | null | undefined;
|
|
6353
6430
|
isTakeaway?: boolean | null | undefined;
|
|
@@ -6364,9 +6441,10 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6364
6441
|
agentId?: string | null | undefined;
|
|
6365
6442
|
attributeSettings?: {
|
|
6366
6443
|
options?: any[] | null | undefined;
|
|
6444
|
+
readonly?: boolean | null | undefined;
|
|
6367
6445
|
type: "string" | "number" | "boolean" | "date";
|
|
6368
6446
|
key: string;
|
|
6369
|
-
entity: "restaurant" | "item" | "group" | "
|
|
6447
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
6370
6448
|
}[] | null | undefined;
|
|
6371
6449
|
pf_agent?: {
|
|
6372
6450
|
clickupId?: string | null | undefined;
|
|
@@ -6415,6 +6493,14 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6415
6493
|
contact: string;
|
|
6416
6494
|
}[] | null | undefined;
|
|
6417
6495
|
customerDisplayImages?: {
|
|
6496
|
+
schedule?: {
|
|
6497
|
+
endTime?: string | null | undefined;
|
|
6498
|
+
startTime?: string | null | undefined;
|
|
6499
|
+
startDate?: string | null | undefined;
|
|
6500
|
+
endDate?: string | null | undefined;
|
|
6501
|
+
repeatDays?: string[] | null | undefined;
|
|
6502
|
+
enabled: boolean;
|
|
6503
|
+
} | null | undefined;
|
|
6418
6504
|
url: string;
|
|
6419
6505
|
restaurantIds: string[];
|
|
6420
6506
|
}[] | null | undefined;
|
|
@@ -6776,13 +6862,13 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6776
6862
|
changePaymentActivity?: {
|
|
6777
6863
|
name: string;
|
|
6778
6864
|
id: string;
|
|
6865
|
+
timeStamp: string;
|
|
6779
6866
|
from: {
|
|
6780
6867
|
name: string;
|
|
6781
6868
|
};
|
|
6782
6869
|
to: {
|
|
6783
6870
|
name: string;
|
|
6784
6871
|
};
|
|
6785
|
-
timeStamp: string;
|
|
6786
6872
|
}[] | null | undefined;
|
|
6787
6873
|
change: {
|
|
6788
6874
|
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";
|
|
@@ -6905,7 +6991,6 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6905
6991
|
target: "PAYMENT";
|
|
6906
6992
|
};
|
|
6907
6993
|
success: boolean;
|
|
6908
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
6909
6994
|
adjustment: {
|
|
6910
6995
|
inclusive?: boolean | null | undefined;
|
|
6911
6996
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -6915,6 +7000,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6915
7000
|
};
|
|
6916
7001
|
};
|
|
6917
7002
|
referenceId: string;
|
|
7003
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
6918
7004
|
}[] | null | undefined;
|
|
6919
7005
|
roundToNearest?: number | null | undefined;
|
|
6920
7006
|
isTakeaway?: boolean | null | undefined;
|
|
@@ -6931,9 +7017,10 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6931
7017
|
agentId?: string | null | undefined;
|
|
6932
7018
|
attributeSettings?: {
|
|
6933
7019
|
options?: any[] | null | undefined;
|
|
7020
|
+
readonly?: boolean | null | undefined;
|
|
6934
7021
|
type: "string" | "number" | "boolean" | "date";
|
|
6935
7022
|
key: string;
|
|
6936
|
-
entity: "restaurant" | "item" | "group" | "
|
|
7023
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
6937
7024
|
}[] | null | undefined;
|
|
6938
7025
|
pf_agent?: {
|
|
6939
7026
|
clickupId?: string | null | undefined;
|
|
@@ -6982,6 +7069,14 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
6982
7069
|
contact: string;
|
|
6983
7070
|
}[] | null | undefined;
|
|
6984
7071
|
customerDisplayImages?: {
|
|
7072
|
+
schedule?: {
|
|
7073
|
+
endTime?: string | null | undefined;
|
|
7074
|
+
startTime?: string | null | undefined;
|
|
7075
|
+
startDate?: string | null | undefined;
|
|
7076
|
+
endDate?: string | null | undefined;
|
|
7077
|
+
repeatDays?: string[] | null | undefined;
|
|
7078
|
+
enabled: boolean;
|
|
7079
|
+
} | null | undefined;
|
|
6985
7080
|
url: string;
|
|
6986
7081
|
restaurantIds: string[];
|
|
6987
7082
|
}[] | null | undefined;
|
|
@@ -7343,13 +7438,13 @@ export declare const FdtoOrderToBill: z.ZodObject<{
|
|
|
7343
7438
|
changePaymentActivity?: {
|
|
7344
7439
|
name: string;
|
|
7345
7440
|
id: string;
|
|
7441
|
+
timeStamp: string;
|
|
7346
7442
|
from: {
|
|
7347
7443
|
name: string;
|
|
7348
7444
|
};
|
|
7349
7445
|
to: {
|
|
7350
7446
|
name: string;
|
|
7351
7447
|
};
|
|
7352
|
-
timeStamp: string;
|
|
7353
7448
|
}[] | null | undefined;
|
|
7354
7449
|
change: {
|
|
7355
7450
|
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";
|