shopoflex-types 1.0.204 → 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 +6 -0
- package/dist/types/user.d.ts +1 -0
- package/package.json +1 -1
package/dist/common.d.ts
CHANGED
|
@@ -230,6 +230,7 @@ export interface IUser {
|
|
|
230
230
|
phone?: string;
|
|
231
231
|
photoURL?: string;
|
|
232
232
|
isAdmin?: boolean;
|
|
233
|
+
emailVerified?: boolean;
|
|
233
234
|
createdAt?: Date;
|
|
234
235
|
updatedAt?: Date;
|
|
235
236
|
fcmTokens?: string[];
|
|
@@ -633,6 +634,10 @@ export interface IAccountingConfig {
|
|
|
633
634
|
enableInventoryAccounting?: boolean;
|
|
634
635
|
};
|
|
635
636
|
}
|
|
637
|
+
export interface IWhatsappSettings {
|
|
638
|
+
showOnMenu?: boolean;
|
|
639
|
+
showOnWebsite?: boolean;
|
|
640
|
+
}
|
|
636
641
|
export interface IBranch {
|
|
637
642
|
_id?: string;
|
|
638
643
|
name: NameType;
|
|
@@ -652,6 +657,7 @@ export interface IBranch {
|
|
|
652
657
|
address?: string;
|
|
653
658
|
isActive?: boolean;
|
|
654
659
|
whatsapp?: string;
|
|
660
|
+
whatsappSettings?: IWhatsappSettings;
|
|
655
661
|
showMap?: boolean;
|
|
656
662
|
accountingConfig?: IAccountingConfig;
|
|
657
663
|
storageConfig?: Record<string, any>;
|
package/dist/types/user.d.ts
CHANGED