grm-shared-library 1.1.184 → 1.1.185

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.
@@ -1,3 +1,4 @@
1
+ import { CountryCode } from "../../country";
1
2
  import { IncidentAppId } from "../../incident";
2
3
  import { Roles } from "../../role";
3
4
  import { UserStatus } from "../enums/user-status.enum";
@@ -9,6 +10,11 @@ export interface User {
9
10
  name: string;
10
11
  email: string;
11
12
  phoneNumber?: string;
13
+ /**
14
+ * ISO 3166-1 alpha-2 country the user's account belongs to (their selected
15
+ * market). Optional for backward compatibility; defaults to KE server-side.
16
+ */
17
+ countryCode?: CountryCode;
12
18
  roles: Roles[];
13
19
  password?: string;
14
20
  avatar?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grm-shared-library",
3
- "version": "1.1.184",
3
+ "version": "1.1.185",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",