shopoflex-types 1.0.86 → 1.0.87

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.
Files changed (2) hide show
  1. package/dist/common.d.ts +8 -0
  2. package/package.json +1 -1
package/dist/common.d.ts CHANGED
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.86",
3
+ "version": "1.0.87",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",