@housebookgroup/shared-types 1.0.5 → 1.0.7

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.
@@ -2,6 +2,7 @@ export interface FormData {
2
2
  propertyName: string;
3
3
  propertyDescription: string;
4
4
  address: string;
5
+ totalFloorArea: number;
5
6
  floorPlans: File[];
6
7
  buildingPlans: File[];
7
8
  }
@@ -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.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "private": false,
@@ -11,6 +11,7 @@ export interface FormData {
11
11
  propertyName: string,
12
12
  propertyDescription: string,
13
13
  address: string,
14
+ totalFloorArea: number,
14
15
  // Plans & Documents
15
16
  floorPlans: File[],
16
17
  buildingPlans: File[]
@@ -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
  }