@fiado/type-kit 2.1.3 → 2.1.4

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.
@@ -12,4 +12,5 @@ export declare class GroupResponse {
12
12
  uniqueMainDirectory: string | null;
13
13
  authorizedAccounts: Array<string>;
14
14
  category: string;
15
+ imageUrl?: string | null;
15
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -14,6 +14,7 @@ export class GroupResponse {
14
14
  uniqueMainDirectory: string | null
15
15
  authorizedAccounts: Array<string>
16
16
  category: string
17
+ imageUrl?: string | null
17
18
  }
18
19
 
19
20