@dative-gpi/foundation-core-domain 1.0.142-role2 → 1.0.142-role3
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.
|
@@ -3,19 +3,25 @@ import { RoleOrganisationInfos, type RoleOrganisationInfosDTO } from "./roleOrga
|
|
|
3
3
|
import { type RoleType } from "@dative-gpi/foundation-shared-domain/enums";
|
|
4
4
|
|
|
5
5
|
export class RoleOrganisationDetails extends RoleOrganisationInfos {
|
|
6
|
+
labelDefault: string;
|
|
6
7
|
description: string;
|
|
8
|
+
descriptionDefault: string;
|
|
7
9
|
translations: RoleTranslation[];
|
|
8
10
|
|
|
9
11
|
constructor(params: RoleOrganisationDetailsDTO) {
|
|
10
12
|
super(params);
|
|
11
13
|
|
|
14
|
+
this.labelDefault = params.labelDefault;
|
|
12
15
|
this.description = params.description;
|
|
16
|
+
this.descriptionDefault = params.descriptionDefault;
|
|
13
17
|
this.translations = params.translations.map(t => new RoleTranslation(t));
|
|
14
18
|
}
|
|
15
19
|
}
|
|
16
20
|
|
|
17
21
|
export interface RoleOrganisationDetailsDTO extends RoleOrganisationInfosDTO {
|
|
22
|
+
labelDefault: string;
|
|
18
23
|
description: string;
|
|
24
|
+
descriptionDefault: string;
|
|
19
25
|
translations: RoleTranslationDTO[];
|
|
20
26
|
}
|
|
21
27
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-core-domain",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.0.142-
|
|
4
|
+
"version": "1.0.142-role3",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "1.0.142-
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.142-
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.142-role3",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.142-role3"
|
|
15
15
|
},
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "a4cb5dbe0b195be866482be144eee946a7467702"
|
|
17
17
|
}
|