@fas-core/shared-types 1.0.1 → 1.0.3

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/index.d.mts CHANGED
@@ -26,8 +26,9 @@ interface ICustomer extends BaseEntity {
26
26
  profileImage: string;
27
27
  address: IAddress;
28
28
  email: string;
29
- phoneNumber?: string;
29
+ phoneNumber: string;
30
30
  password: string;
31
+ status: boolean;
31
32
  }
32
33
 
33
34
  interface IState extends BaseEntity {
@@ -110,6 +111,7 @@ interface IStore extends BaseEntity {
110
111
  slug: string;
111
112
  domain: string;
112
113
  currencies: ICurrency[];
114
+ defaultCurrency: ICurrency;
113
115
  settings: IStoreSettings;
114
116
  status: boolean;
115
117
  }
package/dist/index.d.ts CHANGED
@@ -26,8 +26,9 @@ interface ICustomer extends BaseEntity {
26
26
  profileImage: string;
27
27
  address: IAddress;
28
28
  email: string;
29
- phoneNumber?: string;
29
+ phoneNumber: string;
30
30
  password: string;
31
+ status: boolean;
31
32
  }
32
33
 
33
34
  interface IState extends BaseEntity {
@@ -110,6 +111,7 @@ interface IStore extends BaseEntity {
110
111
  slug: string;
111
112
  domain: string;
112
113
  currencies: ICurrency[];
114
+ defaultCurrency: ICurrency;
113
115
  settings: IStoreSettings;
114
116
  status: boolean;
115
117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fas-core/shared-types",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "FAS Core Shared Types - A collection of shared TypeScript types for the FAS Core SDK.",
5
5
  "author": "ibreakloops",
6
6
  "license": "UNLICENSED",