@dative-gpi/foundation-core-domain 1.0.71 → 1.0.74
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.
|
@@ -9,7 +9,6 @@ export class DeviceOrganisationDetails extends DeviceOrganisationInfos {
|
|
|
9
9
|
articleCode: string;
|
|
10
10
|
familyId: string;
|
|
11
11
|
familyLabel: string;
|
|
12
|
-
description: string;
|
|
13
12
|
options: DeviceOrganisationOption[];
|
|
14
13
|
path: PathCrumb[];
|
|
15
14
|
|
|
@@ -19,7 +18,6 @@ export class DeviceOrganisationDetails extends DeviceOrganisationInfos {
|
|
|
19
18
|
this.articleCode = params.articleCode;
|
|
20
19
|
this.familyId = params.familyId;
|
|
21
20
|
this.familyLabel = params.familyLabel;
|
|
22
|
-
this.description = params.description;
|
|
23
21
|
this.options = params.options.map(dto => new DeviceOrganisationOption({ ...dto }));
|
|
24
22
|
this.path = params.path.map(dto => new PathCrumb({ ...dto })).sort((a, b) => b.index - a.index);
|
|
25
23
|
}
|
|
@@ -29,7 +27,6 @@ export interface DeviceOrganisationDetailsDTO extends DeviceOrganisationInfosDTO
|
|
|
29
27
|
articleCode: string;
|
|
30
28
|
familyId: string;
|
|
31
29
|
familyLabel: string;
|
|
32
|
-
description: string;
|
|
33
30
|
options: DeviceOrganisationOptionDTO[];
|
|
34
31
|
path: PathCrumbDTO[];
|
|
35
32
|
}
|
|
@@ -29,6 +29,7 @@ export class DeviceOrganisationInfos {
|
|
|
29
29
|
groupIcon: string | null;
|
|
30
30
|
label: string;
|
|
31
31
|
code: string;
|
|
32
|
+
description: string;
|
|
32
33
|
imageId: string | null;
|
|
33
34
|
tags: string[];
|
|
34
35
|
unrestricted: boolean;
|
|
@@ -66,6 +67,7 @@ export class DeviceOrganisationInfos {
|
|
|
66
67
|
this.groupIcon = params.groupIcon;
|
|
67
68
|
this.label = params.label;
|
|
68
69
|
this.code = params.code;
|
|
70
|
+
this.description = params.description;
|
|
69
71
|
this.imageId = params.imageId;
|
|
70
72
|
this.tags = params.tags.slice();
|
|
71
73
|
this.unrestricted = params.unrestricted;
|
|
@@ -102,6 +104,7 @@ export interface DeviceOrganisationInfosDTO {
|
|
|
102
104
|
groupIcon: string | null;
|
|
103
105
|
label: string;
|
|
104
106
|
code: string;
|
|
107
|
+
description: string;
|
|
105
108
|
imageId: string | null;
|
|
106
109
|
tags: string[];
|
|
107
110
|
unrestricted: boolean;
|
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.
|
|
4
|
+
"version": "1.0.74",
|
|
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.
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.74",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.74"
|
|
15
15
|
},
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "b9ba9b12c53de7d812e658a3438903e8e6998aad"
|
|
17
17
|
}
|