shopoflex-types 1.0.205 → 1.0.207
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 +5 -0
- package/package.json +1 -1
package/dist/common.d.ts
CHANGED
|
@@ -634,6 +634,10 @@ export interface IAccountingConfig {
|
|
|
634
634
|
enableInventoryAccounting?: boolean;
|
|
635
635
|
};
|
|
636
636
|
}
|
|
637
|
+
export interface IWhatsappSettings {
|
|
638
|
+
showOnMenu?: boolean;
|
|
639
|
+
showOnWebsite?: boolean;
|
|
640
|
+
}
|
|
637
641
|
export interface IBranch {
|
|
638
642
|
_id?: string;
|
|
639
643
|
name: NameType;
|
|
@@ -653,6 +657,7 @@ export interface IBranch {
|
|
|
653
657
|
address?: string;
|
|
654
658
|
isActive?: boolean;
|
|
655
659
|
whatsapp?: string;
|
|
660
|
+
whatsappSettings?: IWhatsappSettings;
|
|
656
661
|
showMap?: boolean;
|
|
657
662
|
accountingConfig?: IAccountingConfig;
|
|
658
663
|
storageConfig?: Record<string, any>;
|