@homefile/components-v2 2.7.12 → 2.7.13

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.
@@ -3,8 +3,11 @@ export interface HomeAddressI {
3
3
  city: string;
4
4
  state: string;
5
5
  street: string;
6
- number?: string;
7
6
  zip: string;
7
+ number?: string;
8
+ floor?: number;
9
+ apartmentNumber?: string;
10
+ obs?: string;
8
11
  }
9
12
  export interface ImageI {
10
13
  bucketName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homefile/components-v2",
3
- "version": "2.7.12",
3
+ "version": "2.7.13",
4
4
  "author": "Homefile",
5
5
  "license": "UNLICENSED",
6
6
  "typings": "dist/index.d.ts",
@@ -4,8 +4,11 @@ export interface HomeAddressI {
4
4
  city: string
5
5
  state: string
6
6
  street: string
7
- number?: string
8
7
  zip: string
8
+ number?: string
9
+ floor?: number
10
+ apartmentNumber?: string
11
+ obs?: string
9
12
  }
10
13
 
11
14
  export interface ImageI {