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 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>;
@@ -30,6 +30,7 @@ export interface IUser {
30
30
  phone?: string;
31
31
  photoURL?: string;
32
32
  isAdmin?: boolean;
33
+ emailVerified?: boolean;
33
34
  vendors?: VendorAssociation[];
34
35
  createdAt?: Date;
35
36
  updatedAt?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.204",
3
+ "version": "1.0.207",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",