shopoflex-types 1.0.86 → 1.0.88
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/common.d.ts +11 -3
- package/package.json +1 -1
package/dist/common.d.ts
CHANGED
|
@@ -279,10 +279,10 @@ export interface GroupedCategory {
|
|
|
279
279
|
products: ProductType[];
|
|
280
280
|
}
|
|
281
281
|
export interface sModifier {
|
|
282
|
-
|
|
282
|
+
name: IBranchName;
|
|
283
283
|
options: {
|
|
284
|
-
addonId: string;
|
|
285
|
-
optionName:
|
|
284
|
+
addonId: string | ProductType;
|
|
285
|
+
optionName: IBranchName;
|
|
286
286
|
price: number;
|
|
287
287
|
quantity: number;
|
|
288
288
|
}[];
|
|
@@ -591,9 +591,16 @@ export interface IPickupSettings {
|
|
|
591
591
|
instruction?: string;
|
|
592
592
|
openingHours?: IOpeningHours;
|
|
593
593
|
}
|
|
594
|
+
export interface IMenuSettings {
|
|
595
|
+
slug?: string;
|
|
596
|
+
qrCodeUrl?: string;
|
|
597
|
+
mainLanguage?: string;
|
|
598
|
+
mainCurrency?: string;
|
|
599
|
+
}
|
|
594
600
|
export interface IDineInSettings {
|
|
595
601
|
enabled?: boolean;
|
|
596
602
|
tableCount?: string;
|
|
603
|
+
menuSettings?: IMenuSettings;
|
|
597
604
|
openingHours?: IOpeningHours;
|
|
598
605
|
}
|
|
599
606
|
export interface IBranch {
|
|
@@ -602,6 +609,7 @@ export interface IBranch {
|
|
|
602
609
|
en: string;
|
|
603
610
|
ar: string;
|
|
604
611
|
};
|
|
612
|
+
slogan?: string;
|
|
605
613
|
phone: string;
|
|
606
614
|
vendorId: string | any;
|
|
607
615
|
deliverySettings?: IDeliverySettings;
|