@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.
|
@@ -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
|
};
|