@homefile/components-v2 2.6.7 → 2.6.8

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.
@@ -25,6 +25,10 @@ export interface MyHomeCardI {
25
25
  loading: boolean;
26
26
  loadingId: string;
27
27
  }
28
+ export interface UserAssociationI {
29
+ accountTypes: string[];
30
+ user: string;
31
+ }
28
32
  export interface HomeI {
29
33
  accountType?: string;
30
34
  active?: boolean;
@@ -32,4 +36,5 @@ export interface HomeI {
32
36
  _id: string;
33
37
  image?: ImageI | null;
34
38
  name: string;
39
+ association?: UserAssociationI[];
35
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homefile/components-v2",
3
- "version": "2.6.7",
3
+ "version": "2.6.8",
4
4
  "author": "Homefile",
5
5
  "license": "UNLICENSED",
6
6
  "typings": "dist/index.d.ts",
@@ -29,6 +29,11 @@ export interface MyHomeCardI {
29
29
  loadingId: string
30
30
  }
31
31
 
32
+ export interface UserAssociationI {
33
+ accountTypes: string[]
34
+ user: string
35
+ }
36
+
32
37
  export interface HomeI {
33
38
  accountType?: string
34
39
  active?: boolean
@@ -36,4 +41,5 @@ export interface HomeI {
36
41
  _id: string
37
42
  image?: ImageI | null
38
43
  name: string
44
+ association?: UserAssociationI[]
39
45
  }