@incomy/platform-sdk 0.4.0-180 → 0.4.0-189

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,4 +1,8 @@
1
1
  export type UpdateProfileRequest = {
2
2
  firstName?: string | null;
3
3
  lastName?: string | null;
4
+ /**
5
+ * Preferred UI language as a lowercase ISO 639-1 code. Only the supported locales are accepted.
6
+ */
7
+ language?: string | null;
4
8
  };
@@ -5,6 +5,11 @@ export type User = {
5
5
  firstName?: string | null;
6
6
  lastName?: string | null;
7
7
  avatar?: string | null;
8
+ /**
9
+ * Preferred UI language as a lowercase ISO 639-1 code (e.g. "en", "pl").
10
+ * Null means the user has not chosen one; the client falls back to the browser language.
11
+ */
12
+ language?: string | null;
8
13
  identities?: Array<UserIdentity> | null;
9
14
  readonly name?: string | null;
10
15
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@incomy/platform-sdk",
3
- "version": "0.4.0-180",
3
+ "version": "0.4.0-189",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [