@onecx/integration-interface 6.0.0-rc.16 → 6.0.0-rc.18
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.
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@onecx/integration-interface",
|
3
|
-
"version": "6.0.0-rc.
|
3
|
+
"version": "6.0.0-rc.18",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"peerDependencies": {
|
6
6
|
"tslib": "^2.6.3",
|
7
7
|
"rxjs": "^7.8.1",
|
8
|
-
"@onecx/accelerator": "^6.0.0-rc.
|
9
|
-
"@onecx/nx-migration-utils": "^6.0.0-rc.
|
8
|
+
"@onecx/accelerator": "^6.0.0-rc.18",
|
9
|
+
"@onecx/nx-migration-utils": "^6.0.0-rc.18",
|
10
10
|
"@nx/devkit": "^20.3.0",
|
11
11
|
"@phenomnomnominal/tsquery": "^6",
|
12
12
|
"typescript": "^5.5.4"
|
@@ -1,29 +1,55 @@
|
|
1
1
|
export interface UserProfile {
|
2
|
-
id?: string;
|
3
2
|
userId: string;
|
3
|
+
person: UserPerson;
|
4
|
+
organization?: string;
|
5
|
+
tenantId?: string;
|
6
|
+
issuer?: string;
|
7
|
+
accountSettings?: UserProfileAccountSettings;
|
8
|
+
/**
|
9
|
+
* @deprecated
|
10
|
+
*/
|
11
|
+
id?: string;
|
12
|
+
/**
|
13
|
+
* @deprecated
|
14
|
+
*/
|
4
15
|
identityProvider?: string;
|
5
16
|
/**
|
17
|
+
* @deprecated
|
6
18
|
* user id in external identity provider, e.g. in keycloak
|
7
19
|
*/
|
8
20
|
identityProviderId?: string;
|
9
|
-
|
10
|
-
|
21
|
+
/**
|
22
|
+
* @deprecated
|
23
|
+
*/
|
11
24
|
tenantName?: string;
|
12
|
-
|
25
|
+
/**
|
26
|
+
* @deprecated
|
27
|
+
*/
|
13
28
|
avatar?: AvatarInfo;
|
14
|
-
|
29
|
+
/**
|
30
|
+
* @deprecated
|
31
|
+
*/
|
15
32
|
memberships?: Array<Membership>;
|
16
33
|
}
|
17
34
|
export interface UserProfileAccountSettings {
|
18
|
-
privacySettings?: UserProfileAccountSettingsPrivacySettings;
|
19
|
-
notificationSettings?: UserProfileAccountSettingsNotificationSettings;
|
20
35
|
localeAndTimeSettings?: UserProfileAccountSettingsLocaleAndTimeSettings;
|
21
36
|
layoutAndThemeSettings?: UserProfileAccountSettingsLayoutAndThemeSettings;
|
37
|
+
/**
|
38
|
+
* @deprecated
|
39
|
+
*/
|
40
|
+
privacySettings?: UserProfileAccountSettingsPrivacySettings;
|
41
|
+
/**
|
42
|
+
* @deprecated
|
43
|
+
*/
|
44
|
+
notificationSettings?: UserProfileAccountSettingsNotificationSettings;
|
22
45
|
}
|
23
46
|
export interface UserProfileAccountSettingsLocaleAndTimeSettings {
|
24
47
|
locale?: string;
|
25
48
|
timezone?: string;
|
26
49
|
}
|
50
|
+
/**
|
51
|
+
* @deprecated
|
52
|
+
*/
|
27
53
|
export interface UserProfileAccountSettingsNotificationSettings {
|
28
54
|
todo?: string;
|
29
55
|
}
|
@@ -34,6 +60,9 @@ export interface UserProfilePreference {
|
|
34
60
|
description?: string;
|
35
61
|
value?: string;
|
36
62
|
}
|
63
|
+
/**
|
64
|
+
* @deprecated
|
65
|
+
*/
|
37
66
|
export interface UserProfileAccountSettingsPrivacySettings {
|
38
67
|
hideMyProfile?: string;
|
39
68
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"user-profile.model.js","sourceRoot":"","sources":["../../../../../../../../libs/integration-interface/src/lib/topics/user-profile/v1/user-profile.model.ts"],"names":[],"mappings":";;;
|
1
|
+
{"version":3,"file":"user-profile.model.js","sourceRoot":"","sources":["../../../../../../../../libs/integration-interface/src/lib/topics/user-profile/v1/user-profile.model.ts"],"names":[],"mappings":";;;AAqIA,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;AACvB,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB"}
|