@housebookgroup/shared-types 1.0.5 → 1.0.6

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.
@@ -7,7 +7,7 @@ export interface Asset {
7
7
  id: string;
8
8
  description: string;
9
9
  type?: string;
10
- curretSpecifications: Record<string, any>;
10
+ currentSpecifications: Record<string, any>;
11
11
  deleted: boolean;
12
12
  assetTypes: AssetType;
13
13
  }
@@ -3,4 +3,5 @@ export interface Owner {
3
3
  firstName: string;
4
4
  lastName: string;
5
5
  email: string;
6
+ phone: string;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@housebookgroup/shared-types",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "private": false,
@@ -7,8 +7,8 @@ export interface AssetType {
7
7
  export interface Asset {
8
8
  id: string;
9
9
  description: string;
10
- type?: string;
11
- curretSpecifications: Record<string, any>;
10
+ type?: string;
11
+ currentSpecifications: Record<string, any>;
12
12
  deleted: boolean;
13
13
  assetTypes: AssetType;
14
14
  }
@@ -36,4 +36,4 @@ export interface Property {
36
36
  images?: string[];
37
37
  createdAt: string;
38
38
  splashImage?: string;
39
- }
39
+ }
package/src/userTypes.ts CHANGED
@@ -3,4 +3,5 @@ export interface Owner {
3
3
  firstName: string;
4
4
  lastName: string;
5
5
  email: string;
6
+ phone: string;
6
7
  }