@dative-gpi/foundation-core-domain 1.0.137-maps3 → 1.0.137-maps4
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,7 +2,6 @@ import { DeviceConnectivityDetails, type DeviceConnectivityDetailsDTO } from "..
|
|
|
2
2
|
import { DeviceStatusDetails, type DeviceStatusDetailsDTO } from "../deviceStatuses/deviceStatusDetails";
|
|
3
3
|
import { DeviceOrganisationAlert, type DeviceOrganisationAlertDTO } from "./deviceOrganisationAlert";
|
|
4
4
|
import { ModelStatusInfos, type ModelStatusInfosDTO } from "../modelStatuses/modelStatusInfos";
|
|
5
|
-
import { Address, type AddressDTO } from "@dative-gpi/foundation-shared-domain/models";
|
|
6
5
|
import { type EntityType } from '@dative-gpi/foundation-shared-domain/enums';
|
|
7
6
|
import { PathCrumb, type PathCrumbDTO } from "../shared/pathCrumb";
|
|
8
7
|
|
|
@@ -11,7 +10,8 @@ export class DeviceOrganisationInfos {
|
|
|
11
10
|
deviceId: string;
|
|
12
11
|
manufacturerId: string;
|
|
13
12
|
manufacturerLabel: string;
|
|
14
|
-
|
|
13
|
+
latitude: number | null;
|
|
14
|
+
longitude: number | null;
|
|
15
15
|
articleId: string;
|
|
16
16
|
articleLabel: string;
|
|
17
17
|
modelId: string;
|
|
@@ -47,7 +47,8 @@ export class DeviceOrganisationInfos {
|
|
|
47
47
|
this.deviceId = params.deviceId;
|
|
48
48
|
this.manufacturerId = params.manufacturerId;
|
|
49
49
|
this.manufacturerLabel = params.manufacturerLabel;
|
|
50
|
-
this.
|
|
50
|
+
this.latitude = params.latitude;
|
|
51
|
+
this.longitude = params.longitude;
|
|
51
52
|
this.articleId = params.articleId;
|
|
52
53
|
this.articleLabel = params.articleLabel;
|
|
53
54
|
this.modelId = params.modelId;
|
|
@@ -86,7 +87,8 @@ export interface DeviceOrganisationInfosDTO {
|
|
|
86
87
|
deviceId: string;
|
|
87
88
|
manufacturerId: string;
|
|
88
89
|
manufacturerLabel: string;
|
|
89
|
-
|
|
90
|
+
latitude: number | null;
|
|
91
|
+
longitude: number | null;
|
|
90
92
|
articleId: string;
|
|
91
93
|
articleLabel: string;
|
|
92
94
|
modelId: string;
|
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.137-
|
|
4
|
+
"version": "1.0.137-maps4",
|
|
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.137-
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.137-
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.137-maps4",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.137-maps4"
|
|
15
15
|
},
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "2ff4d8aa1783b9f845daae1e8e6c9b9d23820b72"
|
|
17
17
|
}
|