@feedmepos/mf-order-setting 0.0.48 → 0.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{KioskDevicesView-iZTQ--DO.js → KioskDevicesView-Ch_mWJz9.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CPDemTBj.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-DV2HYd8u.js} +2 -2
- package/dist/{KioskSettingView-mN7UPNYu.js → KioskSettingView-CaBhf48e.js} +34 -33
- package/dist/{KioskView-NEpc7Ivb.js → KioskView-BGm-emCw.js} +4 -4
- package/dist/{OrderSettingsView-B5Nq_u9Z.js → OrderSettingsView-CRgoLOD2.js} +15016 -14688
- package/dist/{app-B3KtJhiw.js → app-CDTAjXj9.js} +35 -19
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-GjkM9dM2.js → dayjs.min-dI_j30pv.js} +1 -1
- package/dist/frontend/mf-order/src/api/restaurant-setting/index.d.ts +2 -1
- package/dist/frontend/mf-order/src/app.d.ts +16 -0
- package/dist/frontend/mf-order/src/main.d.ts +16 -0
- package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +1 -0
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +5 -2
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +8 -0
- package/dist/frontend/mf-order/src/views/order-settings/drive-thru/DriveThruSetting.vue.d.ts +2 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-Dwzta1U-.js → index-B8U5Sawr.js} +2 -2
- package/dist/{menu.dto-DgPhiIVk.js → menu.dto-qVeqpSdz.js} +25581 -25101
- 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 +63 -18
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +12 -12
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1071 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +8 -0
- package/dist/package/entity/order/order.dto.d.ts +16 -8
- package/dist/package/entity/order-platform/deliveroo/deliveroo-dto.d.ts +2 -2
- package/dist/package/entity/order-platform/deliveroo/deliveroo-setting.do.d.ts +2 -2
- package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +6 -0
- package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +6 -0
- package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.do.d.ts +4 -4
- package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.dto.d.ts +5 -5
- package/dist/package/entity/order-platform/grabfood/grabfood-settings.do.d.ts +2 -2
- package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +6 -6
- package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.do.d.ts +2 -2
- package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.dto.d.ts +2 -2
- package/dist/package/entity/queue/queue.do.d.ts +12 -0
- package/dist/package/entity/queue/queue.dto.d.ts +6 -6
- package/package.json +4 -4
- package/src/api/restaurant-setting/index.ts +6 -0
- package/src/locales/en-US.json +4 -0
- package/src/locales/ja-JP.json +4 -0
- package/src/locales/th-TH.json +4 -0
- package/src/locales/zh-CN.json +4 -0
- package/src/main.ts +2 -2
- package/src/stores/restaurant/index.ts +6 -0
- package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +8 -3
- package/src/views/order-settings/OrderSettingsView.vue +6 -1
- package/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue +22 -1
- package/src/views/order-settings/drive-thru/DriveThruSetting.vue +101 -0
|
@@ -3817,6 +3817,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
3817
3817
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3818
3818
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3819
3819
|
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3820
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3820
3821
|
}, "strip", z.ZodTypeAny, {
|
|
3821
3822
|
unit?: string | null | undefined;
|
|
3822
3823
|
categoryName?: string | null | undefined;
|
|
@@ -3863,6 +3864,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
3863
3864
|
}[] | null | undefined;
|
|
3864
3865
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3865
3866
|
subCategories?: string[] | null | undefined;
|
|
3867
|
+
shelfLife?: number | null | undefined;
|
|
3866
3868
|
code: string;
|
|
3867
3869
|
name: string;
|
|
3868
3870
|
price: {
|
|
@@ -3916,6 +3918,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
3916
3918
|
}[] | null | undefined;
|
|
3917
3919
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3918
3920
|
subCategories?: string[] | null | undefined;
|
|
3921
|
+
shelfLife?: number | null | undefined;
|
|
3919
3922
|
code: string;
|
|
3920
3923
|
name: string;
|
|
3921
3924
|
price: {
|
|
@@ -4754,6 +4757,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
4754
4757
|
}[] | null | undefined;
|
|
4755
4758
|
customAttributes?: Record<string, any> | null | undefined;
|
|
4756
4759
|
subCategories?: string[] | null | undefined;
|
|
4760
|
+
shelfLife?: number | null | undefined;
|
|
4757
4761
|
code: string;
|
|
4758
4762
|
name: string;
|
|
4759
4763
|
price: {
|
|
@@ -4999,6 +5003,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
4999
5003
|
}[] | null | undefined;
|
|
5000
5004
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5001
5005
|
subCategories?: string[] | null | undefined;
|
|
5006
|
+
shelfLife?: number | null | undefined;
|
|
5002
5007
|
code: string;
|
|
5003
5008
|
name: string;
|
|
5004
5009
|
price: {
|
|
@@ -5458,6 +5463,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
5458
5463
|
}[] | null | undefined;
|
|
5459
5464
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5460
5465
|
subCategories?: string[] | null | undefined;
|
|
5466
|
+
shelfLife?: number | null | undefined;
|
|
5461
5467
|
code: string;
|
|
5462
5468
|
name: string;
|
|
5463
5469
|
price: {
|
|
@@ -5870,6 +5876,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
5870
5876
|
}[] | null | undefined;
|
|
5871
5877
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5872
5878
|
subCategories?: string[] | null | undefined;
|
|
5879
|
+
shelfLife?: number | null | undefined;
|
|
5873
5880
|
code: string;
|
|
5874
5881
|
name: string;
|
|
5875
5882
|
price: {
|
|
@@ -6115,6 +6122,7 @@ export declare const FdtoMergeDraftRequest: z.ZodObject<{
|
|
|
6115
6122
|
}[] | null | undefined;
|
|
6116
6123
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6117
6124
|
subCategories?: string[] | null | undefined;
|
|
6125
|
+
shelfLife?: number | null | undefined;
|
|
6118
6126
|
code: string;
|
|
6119
6127
|
name: string;
|
|
6120
6128
|
price: {
|
|
@@ -13449,6 +13449,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13449
13449
|
target: "PAYMENT";
|
|
13450
13450
|
};
|
|
13451
13451
|
success: boolean;
|
|
13452
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13452
13453
|
adjustment: {
|
|
13453
13454
|
inclusive?: boolean | null | undefined;
|
|
13454
13455
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -13458,7 +13459,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13458
13459
|
};
|
|
13459
13460
|
};
|
|
13460
13461
|
referenceId: string;
|
|
13461
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13462
13462
|
}, {
|
|
13463
13463
|
reason?: string | null | undefined;
|
|
13464
13464
|
priority?: number | null | undefined;
|
|
@@ -13540,6 +13540,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13540
13540
|
target: "PAYMENT";
|
|
13541
13541
|
};
|
|
13542
13542
|
success: boolean;
|
|
13543
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13543
13544
|
adjustment: {
|
|
13544
13545
|
inclusive?: boolean | null | undefined;
|
|
13545
13546
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -13549,7 +13550,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
13549
13550
|
};
|
|
13550
13551
|
};
|
|
13551
13552
|
referenceId: string;
|
|
13552
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
13553
13553
|
}>>, "many">>;
|
|
13554
13554
|
option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
13555
13555
|
type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
|
|
@@ -15656,6 +15656,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15656
15656
|
target: "PAYMENT";
|
|
15657
15657
|
};
|
|
15658
15658
|
success: boolean;
|
|
15659
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15659
15660
|
adjustment: {
|
|
15660
15661
|
inclusive?: boolean | null | undefined;
|
|
15661
15662
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -15665,7 +15666,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15665
15666
|
};
|
|
15666
15667
|
};
|
|
15667
15668
|
referenceId: string;
|
|
15668
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15669
15669
|
})[];
|
|
15670
15670
|
orderAt: string;
|
|
15671
15671
|
}, {
|
|
@@ -15957,6 +15957,7 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15957
15957
|
target: "PAYMENT";
|
|
15958
15958
|
};
|
|
15959
15959
|
success: boolean;
|
|
15960
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15960
15961
|
adjustment: {
|
|
15961
15962
|
inclusive?: boolean | null | undefined;
|
|
15962
15963
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -15966,7 +15967,6 @@ export declare const OrderDto: z.ZodObject<{
|
|
|
15966
15967
|
};
|
|
15967
15968
|
};
|
|
15968
15969
|
referenceId: string;
|
|
15969
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
15970
15970
|
})[] | undefined;
|
|
15971
15971
|
option: {
|
|
15972
15972
|
remark?: string | null | undefined;
|
|
@@ -18841,6 +18841,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18841
18841
|
target: "PAYMENT";
|
|
18842
18842
|
};
|
|
18843
18843
|
success: boolean;
|
|
18844
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18844
18845
|
adjustment: {
|
|
18845
18846
|
inclusive?: boolean | null | undefined;
|
|
18846
18847
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -18850,7 +18851,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18850
18851
|
};
|
|
18851
18852
|
};
|
|
18852
18853
|
referenceId: string;
|
|
18853
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18854
18854
|
}, {
|
|
18855
18855
|
reason?: string | null | undefined;
|
|
18856
18856
|
priority?: number | null | undefined;
|
|
@@ -18932,6 +18932,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18932
18932
|
target: "PAYMENT";
|
|
18933
18933
|
};
|
|
18934
18934
|
success: boolean;
|
|
18935
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18935
18936
|
adjustment: {
|
|
18936
18937
|
inclusive?: boolean | null | undefined;
|
|
18937
18938
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -18941,7 +18942,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
18941
18942
|
};
|
|
18942
18943
|
};
|
|
18943
18944
|
referenceId: string;
|
|
18944
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
18945
18945
|
}>>, "many">>;
|
|
18946
18946
|
option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
|
|
18947
18947
|
type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
|
|
@@ -21050,6 +21050,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21050
21050
|
target: "PAYMENT";
|
|
21051
21051
|
};
|
|
21052
21052
|
success: boolean;
|
|
21053
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21053
21054
|
adjustment: {
|
|
21054
21055
|
inclusive?: boolean | null | undefined;
|
|
21055
21056
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -21059,7 +21060,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21059
21060
|
};
|
|
21060
21061
|
};
|
|
21061
21062
|
referenceId: string;
|
|
21062
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21063
21063
|
})[];
|
|
21064
21064
|
orderAt: string;
|
|
21065
21065
|
}, {
|
|
@@ -21353,6 +21353,7 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21353
21353
|
target: "PAYMENT";
|
|
21354
21354
|
};
|
|
21355
21355
|
success: boolean;
|
|
21356
|
+
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21356
21357
|
adjustment: {
|
|
21357
21358
|
inclusive?: boolean | null | undefined;
|
|
21358
21359
|
type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
|
|
@@ -21362,7 +21363,6 @@ export declare const OrderKioskDto: z.ZodObject<{
|
|
|
21362
21363
|
};
|
|
21363
21364
|
};
|
|
21364
21365
|
referenceId: string;
|
|
21365
|
-
from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
|
|
21366
21366
|
})[] | undefined;
|
|
21367
21367
|
option: {
|
|
21368
21368
|
remark?: string | null | undefined;
|
|
@@ -44389,6 +44389,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
44389
44389
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44390
44390
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
44391
44391
|
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
44392
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
44392
44393
|
}, "strip", z.ZodTypeAny, {
|
|
44393
44394
|
unit?: string | null | undefined;
|
|
44394
44395
|
categoryName?: string | null | undefined;
|
|
@@ -44435,6 +44436,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
44435
44436
|
}[] | null | undefined;
|
|
44436
44437
|
customAttributes?: Record<string, any> | null | undefined;
|
|
44437
44438
|
subCategories?: string[] | null | undefined;
|
|
44439
|
+
shelfLife?: number | null | undefined;
|
|
44438
44440
|
code: string;
|
|
44439
44441
|
name: string;
|
|
44440
44442
|
price: {
|
|
@@ -44488,6 +44490,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
44488
44490
|
}[] | null | undefined;
|
|
44489
44491
|
customAttributes?: Record<string, any> | null | undefined;
|
|
44490
44492
|
subCategories?: string[] | null | undefined;
|
|
44493
|
+
shelfLife?: number | null | undefined;
|
|
44491
44494
|
code: string;
|
|
44492
44495
|
name: string;
|
|
44493
44496
|
price: {
|
|
@@ -45326,6 +45329,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
45326
45329
|
}[] | null | undefined;
|
|
45327
45330
|
customAttributes?: Record<string, any> | null | undefined;
|
|
45328
45331
|
subCategories?: string[] | null | undefined;
|
|
45332
|
+
shelfLife?: number | null | undefined;
|
|
45329
45333
|
code: string;
|
|
45330
45334
|
name: string;
|
|
45331
45335
|
price: {
|
|
@@ -45571,6 +45575,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
45571
45575
|
}[] | null | undefined;
|
|
45572
45576
|
customAttributes?: Record<string, any> | null | undefined;
|
|
45573
45577
|
subCategories?: string[] | null | undefined;
|
|
45578
|
+
shelfLife?: number | null | undefined;
|
|
45574
45579
|
code: string;
|
|
45575
45580
|
name: string;
|
|
45576
45581
|
price: {
|
|
@@ -46311,6 +46316,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
46311
46316
|
}[] | null | undefined;
|
|
46312
46317
|
customAttributes?: Record<string, any> | null | undefined;
|
|
46313
46318
|
subCategories?: string[] | null | undefined;
|
|
46319
|
+
shelfLife?: number | null | undefined;
|
|
46314
46320
|
code: string;
|
|
46315
46321
|
name: string;
|
|
46316
46322
|
price: {
|
|
@@ -47004,6 +47010,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
47004
47010
|
}[] | null | undefined;
|
|
47005
47011
|
customAttributes?: Record<string, any> | null | undefined;
|
|
47006
47012
|
subCategories?: string[] | null | undefined;
|
|
47013
|
+
shelfLife?: number | null | undefined;
|
|
47007
47014
|
code: string;
|
|
47008
47015
|
name: string;
|
|
47009
47016
|
price: {
|
|
@@ -47249,6 +47256,7 @@ export declare const FdtoRerunOrderRequest: z.ZodObject<{
|
|
|
47249
47256
|
}[] | null | undefined;
|
|
47250
47257
|
customAttributes?: Record<string, any> | null | undefined;
|
|
47251
47258
|
subCategories?: string[] | null | undefined;
|
|
47259
|
+
shelfLife?: number | null | undefined;
|
|
47252
47260
|
code: string;
|
|
47253
47261
|
name: string;
|
|
47254
47262
|
price: {
|
|
@@ -19,8 +19,8 @@ export declare const FdtoDeliverooCreateOrUpdateSettings: z.ZodObject<z.extendSh
|
|
|
19
19
|
_id?: string | undefined;
|
|
20
20
|
catalogId?: string | null | undefined;
|
|
21
21
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
22
|
-
lastSynchronize?: string | null | undefined;
|
|
23
22
|
updatedAt?: string | null | undefined;
|
|
23
|
+
lastSynchronize?: string | null | undefined;
|
|
24
24
|
menuSyncError?: string | null | undefined;
|
|
25
25
|
enable: boolean;
|
|
26
26
|
autoCloseBill: boolean;
|
|
@@ -30,8 +30,8 @@ export declare const FdtoDeliverooCreateOrUpdateSettings: z.ZodObject<z.extendSh
|
|
|
30
30
|
_id?: string | undefined;
|
|
31
31
|
catalogId?: string | null | undefined;
|
|
32
32
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
33
|
-
lastSynchronize?: string | null | undefined;
|
|
34
33
|
updatedAt?: string | null | undefined;
|
|
34
|
+
lastSynchronize?: string | null | undefined;
|
|
35
35
|
menuSyncError?: string | null | undefined;
|
|
36
36
|
enable: boolean;
|
|
37
37
|
autoCloseBill: boolean;
|
|
@@ -16,8 +16,8 @@ export declare const FdoDeliverooSettings: z.ZodObject<z.extendShape<{
|
|
|
16
16
|
_id?: string | undefined;
|
|
17
17
|
catalogId?: string | null | undefined;
|
|
18
18
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
19
|
-
lastSynchronize?: string | null | undefined;
|
|
20
19
|
updatedAt?: string | null | undefined;
|
|
20
|
+
lastSynchronize?: string | null | undefined;
|
|
21
21
|
menuSyncError?: string | null | undefined;
|
|
22
22
|
enable: boolean;
|
|
23
23
|
autoCloseBill: boolean;
|
|
@@ -27,8 +27,8 @@ export declare const FdoDeliverooSettings: z.ZodObject<z.extendShape<{
|
|
|
27
27
|
_id?: string | undefined;
|
|
28
28
|
catalogId?: string | null | undefined;
|
|
29
29
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
30
|
-
lastSynchronize?: string | null | undefined;
|
|
31
30
|
updatedAt?: string | null | undefined;
|
|
31
|
+
lastSynchronize?: string | null | undefined;
|
|
32
32
|
menuSyncError?: string | null | undefined;
|
|
33
33
|
enable: boolean;
|
|
34
34
|
autoCloseBill: boolean;
|
|
@@ -86,6 +86,8 @@ export declare const FdoExternalSetting: z.ZodObject<{
|
|
|
86
86
|
}, {
|
|
87
87
|
catalogId?: string | null | undefined;
|
|
88
88
|
}>>>;
|
|
89
|
+
updatedAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
90
|
+
lastSynchronize: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
89
91
|
}, "strip", z.ZodTypeAny, {
|
|
90
92
|
pickup?: {
|
|
91
93
|
catalogId?: string | null | undefined;
|
|
@@ -98,6 +100,8 @@ export declare const FdoExternalSetting: z.ZodObject<{
|
|
|
98
100
|
systemCode: string;
|
|
99
101
|
} | null | undefined;
|
|
100
102
|
} | null | undefined;
|
|
103
|
+
updatedAt?: string | null | undefined;
|
|
104
|
+
lastSynchronize?: string | null | undefined;
|
|
101
105
|
_id: string;
|
|
102
106
|
enable: boolean;
|
|
103
107
|
platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
|
|
@@ -119,6 +123,8 @@ export declare const FdoExternalSetting: z.ZodObject<{
|
|
|
119
123
|
systemCode: string;
|
|
120
124
|
} | null | undefined;
|
|
121
125
|
} | null | undefined;
|
|
126
|
+
updatedAt?: string | null | undefined;
|
|
127
|
+
lastSynchronize?: string | null | undefined;
|
|
122
128
|
_id: string;
|
|
123
129
|
enable: boolean;
|
|
124
130
|
platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
|
|
@@ -56,6 +56,8 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
|
|
|
56
56
|
}, {
|
|
57
57
|
catalogId?: string | null | undefined;
|
|
58
58
|
}>>>;
|
|
59
|
+
updatedAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
60
|
+
lastSynchronize: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
59
61
|
}, "_id">, "strip", z.ZodTypeAny, {
|
|
60
62
|
pickup?: {
|
|
61
63
|
catalogId?: string | null | undefined;
|
|
@@ -68,6 +70,8 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
|
|
|
68
70
|
systemCode: string;
|
|
69
71
|
} | null | undefined;
|
|
70
72
|
} | null | undefined;
|
|
73
|
+
updatedAt?: string | null | undefined;
|
|
74
|
+
lastSynchronize?: string | null | undefined;
|
|
71
75
|
enable: boolean;
|
|
72
76
|
platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
|
|
73
77
|
config: {
|
|
@@ -88,6 +92,8 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
|
|
|
88
92
|
systemCode: string;
|
|
89
93
|
} | null | undefined;
|
|
90
94
|
} | null | undefined;
|
|
95
|
+
updatedAt?: string | null | undefined;
|
|
96
|
+
lastSynchronize?: string | null | undefined;
|
|
91
97
|
enable: boolean;
|
|
92
98
|
platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
|
|
93
99
|
config: {
|
|
@@ -153,8 +153,9 @@ export declare const FdoFoodpandaSettings: z.ZodObject<z.extendShape<{
|
|
|
153
153
|
catalogId?: string | null | undefined;
|
|
154
154
|
autoAccept?: boolean | null | undefined;
|
|
155
155
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
156
|
-
|
|
156
|
+
updatedAt?: string | null | undefined;
|
|
157
157
|
lastSynchronize?: string | null | undefined;
|
|
158
|
+
commissionRate?: number | null | undefined;
|
|
158
159
|
showProductAddon?: boolean | null | undefined;
|
|
159
160
|
reportConfig?: {
|
|
160
161
|
commissionRate: number;
|
|
@@ -169,7 +170,6 @@ export declare const FdoFoodpandaSettings: z.ZodObject<z.extendShape<{
|
|
|
169
170
|
} | null | undefined;
|
|
170
171
|
hasSst?: boolean | null | undefined;
|
|
171
172
|
ignoreDiscount?: boolean | null | undefined;
|
|
172
|
-
updatedAt?: string | null | undefined;
|
|
173
173
|
menuSyncError?: string | null | undefined;
|
|
174
174
|
sstInclusive?: boolean | null | undefined;
|
|
175
175
|
enable: boolean;
|
|
@@ -181,8 +181,9 @@ export declare const FdoFoodpandaSettings: z.ZodObject<z.extendShape<{
|
|
|
181
181
|
catalogId?: string | null | undefined;
|
|
182
182
|
autoAccept?: boolean | null | undefined;
|
|
183
183
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
184
|
-
|
|
184
|
+
updatedAt?: string | null | undefined;
|
|
185
185
|
lastSynchronize?: string | null | undefined;
|
|
186
|
+
commissionRate?: number | null | undefined;
|
|
186
187
|
showProductAddon?: boolean | null | undefined;
|
|
187
188
|
reportConfig?: {
|
|
188
189
|
commissionRate: number;
|
|
@@ -197,7 +198,6 @@ export declare const FdoFoodpandaSettings: z.ZodObject<z.extendShape<{
|
|
|
197
198
|
} | null | undefined;
|
|
198
199
|
hasSst?: boolean | null | undefined;
|
|
199
200
|
ignoreDiscount?: boolean | null | undefined;
|
|
200
|
-
updatedAt?: string | null | undefined;
|
|
201
201
|
menuSyncError?: string | null | undefined;
|
|
202
202
|
sstInclusive?: boolean | null | undefined;
|
|
203
203
|
enable: boolean;
|
|
@@ -5,9 +5,9 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
|
|
|
5
5
|
enable: z.ZodOptional<z.ZodBoolean>;
|
|
6
6
|
autoCloseBill: z.ZodOptional<z.ZodBoolean>;
|
|
7
7
|
printReceiptAfterClose: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
8
|
+
lastSynchronize: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
8
9
|
commissionRate: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
|
|
9
10
|
remoteId: z.ZodOptional<z.ZodString>;
|
|
10
|
-
lastSynchronize: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
11
11
|
showProductAddon: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
12
12
|
menuSyncError: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
13
13
|
partnerMerchantID: z.ZodOptional<z.ZodString>;
|
|
@@ -73,9 +73,10 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
|
|
|
73
73
|
enable?: boolean | undefined;
|
|
74
74
|
autoCloseBill?: boolean | undefined;
|
|
75
75
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
76
|
+
updatedAt?: string | null | undefined;
|
|
77
|
+
lastSynchronize?: string | null | undefined;
|
|
76
78
|
commissionRate?: number | null | undefined;
|
|
77
79
|
remoteId?: string | undefined;
|
|
78
|
-
lastSynchronize?: string | null | undefined;
|
|
79
80
|
showProductAddon?: boolean | null | undefined;
|
|
80
81
|
reportConfig?: {
|
|
81
82
|
commissionRate: number;
|
|
@@ -89,7 +90,6 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
|
|
|
89
90
|
}[];
|
|
90
91
|
} | null | undefined;
|
|
91
92
|
ignoreDiscount?: boolean | null | undefined;
|
|
92
|
-
updatedAt?: string | null | undefined;
|
|
93
93
|
menuSyncError?: string | null | undefined;
|
|
94
94
|
sstInclusive?: boolean | null | undefined;
|
|
95
95
|
partnerMerchantID?: string | undefined;
|
|
@@ -100,9 +100,10 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
|
|
|
100
100
|
enable?: boolean | undefined;
|
|
101
101
|
autoCloseBill?: boolean | undefined;
|
|
102
102
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
103
|
+
updatedAt?: string | null | undefined;
|
|
104
|
+
lastSynchronize?: string | null | undefined;
|
|
103
105
|
commissionRate?: number | null | undefined;
|
|
104
106
|
remoteId?: string | undefined;
|
|
105
|
-
lastSynchronize?: string | null | undefined;
|
|
106
107
|
showProductAddon?: boolean | null | undefined;
|
|
107
108
|
reportConfig?: {
|
|
108
109
|
commissionRate: number;
|
|
@@ -116,7 +117,6 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
|
|
|
116
117
|
}[];
|
|
117
118
|
} | null | undefined;
|
|
118
119
|
ignoreDiscount?: boolean | null | undefined;
|
|
119
|
-
updatedAt?: string | null | undefined;
|
|
120
120
|
menuSyncError?: string | null | undefined;
|
|
121
121
|
sstInclusive?: boolean | null | undefined;
|
|
122
122
|
partnerMerchantID?: string | undefined;
|
|
@@ -19,9 +19,9 @@ export declare const FdoGrabfoodSettings: z.ZodObject<z.extendShape<{
|
|
|
19
19
|
_id?: string | undefined;
|
|
20
20
|
catalogId?: string | null | undefined;
|
|
21
21
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
22
|
+
updatedAt?: string | null | undefined;
|
|
22
23
|
lastSynchronize?: string | null | undefined;
|
|
23
24
|
showProductAddon?: boolean | null | undefined;
|
|
24
|
-
updatedAt?: string | null | undefined;
|
|
25
25
|
menuSyncError?: string | null | undefined;
|
|
26
26
|
syncV2?: boolean | null | undefined;
|
|
27
27
|
enable: boolean;
|
|
@@ -33,9 +33,9 @@ export declare const FdoGrabfoodSettings: z.ZodObject<z.extendShape<{
|
|
|
33
33
|
_id?: string | undefined;
|
|
34
34
|
catalogId?: string | null | undefined;
|
|
35
35
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
36
|
+
updatedAt?: string | null | undefined;
|
|
36
37
|
lastSynchronize?: string | null | undefined;
|
|
37
38
|
showProductAddon?: boolean | null | undefined;
|
|
38
|
-
updatedAt?: string | null | undefined;
|
|
39
39
|
menuSyncError?: string | null | undefined;
|
|
40
40
|
syncV2?: boolean | null | undefined;
|
|
41
41
|
enable: boolean;
|
|
@@ -1697,10 +1697,10 @@ export declare const FdtoGrabfoodCreateOrUpdateSettings: z.ZodObject<{
|
|
|
1697
1697
|
enable: z.ZodOptional<z.ZodBoolean>;
|
|
1698
1698
|
autoCloseBill: z.ZodOptional<z.ZodBoolean>;
|
|
1699
1699
|
printReceiptAfterClose: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
1700
|
-
|
|
1700
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
1701
1701
|
lastSynchronize: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
1702
|
+
commissionRate: z.ZodOptional<z.ZodNumber>;
|
|
1702
1703
|
showProductAddon: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
1703
|
-
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
1704
1704
|
menuSyncError: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
1705
1705
|
merchantID: z.ZodOptional<z.ZodString>;
|
|
1706
1706
|
syncV2: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
@@ -1712,10 +1712,10 @@ export declare const FdtoGrabfoodCreateOrUpdateSettings: z.ZodObject<{
|
|
|
1712
1712
|
enable?: boolean | undefined;
|
|
1713
1713
|
autoCloseBill?: boolean | undefined;
|
|
1714
1714
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
1715
|
-
|
|
1715
|
+
updatedAt?: string | null | undefined;
|
|
1716
1716
|
lastSynchronize?: string | null | undefined;
|
|
1717
|
+
commissionRate?: number | undefined;
|
|
1717
1718
|
showProductAddon?: boolean | null | undefined;
|
|
1718
|
-
updatedAt?: string | null | undefined;
|
|
1719
1719
|
menuSyncError?: string | null | undefined;
|
|
1720
1720
|
partnerMerchantID?: string | undefined;
|
|
1721
1721
|
merchantID?: string | undefined;
|
|
@@ -1727,10 +1727,10 @@ export declare const FdtoGrabfoodCreateOrUpdateSettings: z.ZodObject<{
|
|
|
1727
1727
|
enable?: boolean | undefined;
|
|
1728
1728
|
autoCloseBill?: boolean | undefined;
|
|
1729
1729
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
1730
|
-
|
|
1730
|
+
updatedAt?: string | null | undefined;
|
|
1731
1731
|
lastSynchronize?: string | null | undefined;
|
|
1732
|
+
commissionRate?: number | undefined;
|
|
1732
1733
|
showProductAddon?: boolean | null | undefined;
|
|
1733
|
-
updatedAt?: string | null | undefined;
|
|
1734
1734
|
menuSyncError?: string | null | undefined;
|
|
1735
1735
|
partnerMerchantID?: string | undefined;
|
|
1736
1736
|
merchantID?: string | undefined;
|
|
@@ -148,9 +148,9 @@ export declare const FdoShopeeFoodSettings: z.ZodObject<z.extendShape<{
|
|
|
148
148
|
_id?: string | undefined;
|
|
149
149
|
catalogId?: string | null | undefined;
|
|
150
150
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
151
|
+
updatedAt?: string | null | undefined;
|
|
151
152
|
lastSynchronize?: string | null | undefined;
|
|
152
153
|
showProductAddon?: boolean | null | undefined;
|
|
153
|
-
updatedAt?: string | null | undefined;
|
|
154
154
|
menuSyncError?: string | null | undefined;
|
|
155
155
|
syncV2?: boolean | null | undefined;
|
|
156
156
|
enable: boolean;
|
|
@@ -172,9 +172,9 @@ export declare const FdoShopeeFoodSettings: z.ZodObject<z.extendShape<{
|
|
|
172
172
|
_id?: string | undefined;
|
|
173
173
|
catalogId?: string | null | undefined;
|
|
174
174
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
175
|
+
updatedAt?: string | null | undefined;
|
|
175
176
|
lastSynchronize?: string | null | undefined;
|
|
176
177
|
showProductAddon?: boolean | null | undefined;
|
|
177
|
-
updatedAt?: string | null | undefined;
|
|
178
178
|
menuSyncError?: string | null | undefined;
|
|
179
179
|
syncV2?: boolean | null | undefined;
|
|
180
180
|
enable: boolean;
|
|
@@ -69,9 +69,9 @@ export declare const FdtoCreateOrUpdateShopeeFoodSettings: z.ZodObject<Omit<z.ex
|
|
|
69
69
|
_id?: string | undefined;
|
|
70
70
|
catalogId?: string | null | undefined;
|
|
71
71
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
72
|
+
updatedAt?: string | null | undefined;
|
|
72
73
|
lastSynchronize?: string | null | undefined;
|
|
73
74
|
showProductAddon?: boolean | null | undefined;
|
|
74
|
-
updatedAt?: string | null | undefined;
|
|
75
75
|
menuSyncError?: string | null | undefined;
|
|
76
76
|
syncV2?: boolean | null | undefined;
|
|
77
77
|
enable: boolean;
|
|
@@ -93,9 +93,9 @@ export declare const FdtoCreateOrUpdateShopeeFoodSettings: z.ZodObject<Omit<z.ex
|
|
|
93
93
|
_id?: string | undefined;
|
|
94
94
|
catalogId?: string | null | undefined;
|
|
95
95
|
printReceiptAfterClose?: boolean | null | undefined;
|
|
96
|
+
updatedAt?: string | null | undefined;
|
|
96
97
|
lastSynchronize?: string | null | undefined;
|
|
97
98
|
showProductAddon?: boolean | null | undefined;
|
|
98
|
-
updatedAt?: string | null | undefined;
|
|
99
99
|
menuSyncError?: string | null | undefined;
|
|
100
100
|
syncV2?: boolean | null | undefined;
|
|
101
101
|
enable: boolean;
|
|
@@ -1184,6 +1184,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
|
|
|
1184
1184
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1185
1185
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1186
1186
|
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1187
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1187
1188
|
}, "strip", z.ZodTypeAny, {
|
|
1188
1189
|
unit?: string | null | undefined;
|
|
1189
1190
|
categoryName?: string | null | undefined;
|
|
@@ -1230,6 +1231,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
|
|
|
1230
1231
|
}[] | null | undefined;
|
|
1231
1232
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1232
1233
|
subCategories?: string[] | null | undefined;
|
|
1234
|
+
shelfLife?: number | null | undefined;
|
|
1233
1235
|
code: string;
|
|
1234
1236
|
name: string;
|
|
1235
1237
|
price: {
|
|
@@ -1283,6 +1285,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
|
|
|
1283
1285
|
}[] | null | undefined;
|
|
1284
1286
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1285
1287
|
subCategories?: string[] | null | undefined;
|
|
1288
|
+
shelfLife?: number | null | undefined;
|
|
1286
1289
|
code: string;
|
|
1287
1290
|
name: string;
|
|
1288
1291
|
price: {
|
|
@@ -1380,6 +1383,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
|
|
|
1380
1383
|
}[] | null | undefined;
|
|
1381
1384
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1382
1385
|
subCategories?: string[] | null | undefined;
|
|
1386
|
+
shelfLife?: number | null | undefined;
|
|
1383
1387
|
code: string;
|
|
1384
1388
|
name: string;
|
|
1385
1389
|
price: {
|
|
@@ -1564,6 +1568,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
|
|
|
1564
1568
|
}[] | null | undefined;
|
|
1565
1569
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1566
1570
|
subCategories?: string[] | null | undefined;
|
|
1571
|
+
shelfLife?: number | null | undefined;
|
|
1567
1572
|
code: string;
|
|
1568
1573
|
name: string;
|
|
1569
1574
|
price: {
|
|
@@ -2531,6 +2536,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
2531
2536
|
unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2532
2537
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
2533
2538
|
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2539
|
+
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2534
2540
|
}, "strip", z.ZodTypeAny, {
|
|
2535
2541
|
unit?: string | null | undefined;
|
|
2536
2542
|
categoryName?: string | null | undefined;
|
|
@@ -2577,6 +2583,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
2577
2583
|
}[] | null | undefined;
|
|
2578
2584
|
customAttributes?: Record<string, any> | null | undefined;
|
|
2579
2585
|
subCategories?: string[] | null | undefined;
|
|
2586
|
+
shelfLife?: number | null | undefined;
|
|
2580
2587
|
code: string;
|
|
2581
2588
|
name: string;
|
|
2582
2589
|
price: {
|
|
@@ -2630,6 +2637,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
2630
2637
|
}[] | null | undefined;
|
|
2631
2638
|
customAttributes?: Record<string, any> | null | undefined;
|
|
2632
2639
|
subCategories?: string[] | null | undefined;
|
|
2640
|
+
shelfLife?: number | null | undefined;
|
|
2633
2641
|
code: string;
|
|
2634
2642
|
name: string;
|
|
2635
2643
|
price: {
|
|
@@ -2727,6 +2735,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
2727
2735
|
}[] | null | undefined;
|
|
2728
2736
|
customAttributes?: Record<string, any> | null | undefined;
|
|
2729
2737
|
subCategories?: string[] | null | undefined;
|
|
2738
|
+
shelfLife?: number | null | undefined;
|
|
2730
2739
|
code: string;
|
|
2731
2740
|
name: string;
|
|
2732
2741
|
price: {
|
|
@@ -2911,6 +2920,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
2911
2920
|
}[] | null | undefined;
|
|
2912
2921
|
customAttributes?: Record<string, any> | null | undefined;
|
|
2913
2922
|
subCategories?: string[] | null | undefined;
|
|
2923
|
+
shelfLife?: number | null | undefined;
|
|
2914
2924
|
code: string;
|
|
2915
2925
|
name: string;
|
|
2916
2926
|
price: {
|
|
@@ -3116,6 +3126,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
3116
3126
|
}[] | null | undefined;
|
|
3117
3127
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3118
3128
|
subCategories?: string[] | null | undefined;
|
|
3129
|
+
shelfLife?: number | null | undefined;
|
|
3119
3130
|
code: string;
|
|
3120
3131
|
name: string;
|
|
3121
3132
|
price: {
|
|
@@ -3321,6 +3332,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
3321
3332
|
}[] | null | undefined;
|
|
3322
3333
|
customAttributes?: Record<string, any> | null | undefined;
|
|
3323
3334
|
subCategories?: string[] | null | undefined;
|
|
3335
|
+
shelfLife?: number | null | undefined;
|
|
3324
3336
|
code: string;
|
|
3325
3337
|
name: string;
|
|
3326
3338
|
price: {
|