@dative-gpi/foundation-shared-domain 0.0.56 → 0.0.58

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.
@@ -2,6 +2,7 @@ import { UserInfos, UserInfosDTO } from "./userInfos";
2
2
 
3
3
  export class UserDetails extends UserInfos {
4
4
  adminAccess: boolean;
5
+ hasSignedPolicies: boolean;
5
6
  languageCode: string;
6
7
  timeZoneId: string;
7
8
  timeZoneOffset: string;
@@ -12,6 +13,7 @@ export class UserDetails extends UserInfos {
12
13
  super(params);
13
14
 
14
15
  this.adminAccess = params.adminAccess;
16
+ this.hasSignedPolicies = params.hasSignedPolicies;
15
17
  this.languageCode = params.languageCode;
16
18
  this.timeZoneId = params.timeZoneId;
17
19
  this.timeZoneOffset = params.timeZoneOffset;
@@ -22,6 +24,7 @@ export class UserDetails extends UserInfos {
22
24
 
23
25
  export interface UserDetailsDTO extends UserInfosDTO {
24
26
  adminAccess: boolean;
27
+ hasSignedPolicies: boolean;
25
28
  languageCode: string;
26
29
  timeZoneId: string;
27
30
  timeZoneOffset: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-shared-domain",
3
3
  "sideEffects": false,
4
- "version": "0.0.56",
4
+ "version": "0.0.58",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -12,5 +12,5 @@
12
12
  "dependencies": {
13
13
  "date-fns": "^3.6.0"
14
14
  },
15
- "gitHead": "abad32205d89f93f2cfd5c83aae50f2d9248ecc0"
15
+ "gitHead": "13e01a0600c89855de090bcd7dd75bb768a96888"
16
16
  }