@m4l/gclick-realtime 1.10.0 → 1.11.0
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/consumer/RealTimeConsumerContext.d.ts +10 -0
- package/consumer/RealTimeConsumerContext.d.ts.map +1 -0
- package/consumer/RealTimeConsumerContext.js +128 -0
- package/consumer/index.d.ts +4 -0
- package/consumer/index.d.ts.map +1 -0
- package/consumer/index.js +7 -0
- package/consumer/types.d.ts +47 -0
- package/consumer/types.d.ts.map +1 -0
- package/consumer/useRealTimeConsumer.d.ts.map +1 -0
- package/{web/consumer → consumer}/useRealTimeConsumer.js +2 -2
- package/contracts/deviceData.d.ts +19 -22
- package/contracts/deviceData.d.ts.map +1 -1
- package/contracts/deviceDetail.d.ts +0 -2
- package/contracts/deviceDetail.d.ts.map +1 -1
- package/contracts/index.d.ts +1 -1
- package/contracts/index.d.ts.map +1 -1
- package/dummy/catalogs/baseDeviceTemplate.d.ts.map +1 -1
- package/dummy/catalogs/baseDeviceTemplate.js +4 -35
- package/dummy/catalogs/blueprints.d.ts +9 -54
- package/dummy/catalogs/blueprints.d.ts.map +1 -1
- package/dummy/catalogs/blueprints.js +25 -42
- package/dummy/catalogs/departments.d.ts +10 -0
- package/dummy/catalogs/departments.d.ts.map +1 -0
- package/dummy/catalogs/departments.js +43 -0
- package/dummy/index.d.ts +3 -3
- package/dummy/index.d.ts.map +1 -1
- package/dummy/index.js +28 -28
- package/dummy/shared/types.d.ts +2 -4
- package/dummy/shared/types.d.ts.map +1 -1
- package/dummy/{runtime → simulation}/simulation.d.ts +1 -1
- package/dummy/simulation/simulation.d.ts.map +1 -0
- package/dummy/{runtime → simulation}/simulation.js +333 -423
- package/dummy/{runtime/dummy.d.ts → source-data/SourceDataDummy.d.ts} +8 -3
- package/dummy/source-data/SourceDataDummy.d.ts.map +1 -0
- package/dummy/{runtime/dummy.js → source-data/SourceDataDummy.js} +117 -128
- package/mobile/index.d.ts +4 -0
- package/mobile/index.d.ts.map +1 -0
- package/mobile/index.js +23 -0
- package/mobile/resourceTypes.d.ts +48 -0
- package/mobile/resourceTypes.d.ts.map +1 -0
- package/mobile/resourceTypes.js +54 -0
- package/mobile/runtime/atmosphere.d.ts +10 -0
- package/mobile/runtime/atmosphere.d.ts.map +1 -0
- package/mobile/runtime/atmosphere.js +16 -0
- package/mobile/runtime/dummy.d.ts +11 -0
- package/mobile/runtime/dummy.d.ts.map +1 -0
- package/mobile/runtime/dummy.js +16 -0
- package/mobile/runtime/index.d.ts +11 -0
- package/mobile/runtime/index.d.ts.map +1 -0
- package/mobile/runtime/runtimeRegistry.d.ts +17 -0
- package/mobile/runtime/runtimeRegistry.d.ts.map +1 -0
- package/mobile/runtime/runtimeRegistry.js +24 -0
- package/mobile/runtime/sourceDataFactory.d.ts +6 -0
- package/mobile/runtime/sourceDataFactory.d.ts.map +1 -0
- package/mobile/runtime/sourceDataFactory.js +29 -0
- package/mobile/runtime/types.d.ts +8 -0
- package/mobile/runtime/types.d.ts.map +1 -0
- package/package.json +37 -1
- package/payload/mergeDevicePayloadWithUpdatedAtGuard.d.ts +1 -1
- package/payload/mergeDevicePayloadWithUpdatedAtGuard.d.ts.map +1 -1
- package/rt_alarms/constants.d.ts +6 -0
- package/rt_alarms/constants.d.ts.map +1 -0
- package/rt_alarms/constants.js +7 -0
- package/rt_alarms/index.d.ts +15 -0
- package/rt_alarms/index.d.ts.map +1 -0
- package/rt_alarms/index.js +18 -0
- package/rt_devices/constants.d.ts +4 -0
- package/rt_devices/constants.d.ts.map +1 -0
- package/rt_devices/constants.js +5 -0
- package/rt_devices/index.d.ts +22 -0
- package/rt_devices/index.d.ts.map +1 -0
- package/rt_devices/index.js +150 -0
- package/rt_devices/resourceTypeMergeStrategies.d.ts +12 -0
- package/rt_devices/resourceTypeMergeStrategies.d.ts.map +1 -0
- package/rt_devices/resourceTypeMergeStrategies.js +19 -0
- package/shared/atmosphereHost.d.ts +5 -0
- package/shared/atmosphereHost.d.ts.map +1 -0
- package/shared/atmosphereHost.js +7 -0
- package/shared/index.d.ts +5 -0
- package/shared/index.d.ts.map +1 -0
- package/shared/index.js +11 -0
- package/shared/performanceMetrics.d.ts +64 -0
- package/shared/performanceMetrics.d.ts.map +1 -0
- package/shared/performanceMetrics.js +73 -0
- package/shared/runtimeRegistry.d.ts +17 -0
- package/shared/runtimeRegistry.d.ts.map +1 -0
- package/shared/runtimeRegistry.js +27 -0
- package/shared/runtimeResourceTypesKey.d.ts +14 -0
- package/shared/runtimeResourceTypesKey.d.ts.map +1 -0
- package/shared/runtimeResourceTypesKey.js +18 -0
- package/shared/startupSnapshots.d.ts +28 -0
- package/shared/startupSnapshots.d.ts.map +1 -0
- package/shared/startupSnapshots.js +29 -0
- package/web/diagnostics/performanceMetrics.d.ts +34 -0
- package/web/diagnostics/performanceMetrics.d.ts.map +1 -0
- package/web/diagnostics/performanceMetrics.js +61 -0
- package/web/host/devicesResourceType.d.ts +3 -11
- package/web/host/devicesResourceType.d.ts.map +1 -1
- package/web/host/devicesResourceType.js +58 -171
- package/web/host/hostRuntime.d.ts +6 -8
- package/web/host/hostRuntime.d.ts.map +1 -1
- package/web/host/hostRuntime.js +29 -38
- package/web/host/index.d.ts +2 -2
- package/web/host/index.d.ts.map +1 -1
- package/web/host/launchContract.d.ts +19 -13
- package/web/host/launchContract.d.ts.map +1 -1
- package/web/host/launchContract.js +82 -76
- package/web/index.d.ts +2 -7
- package/web/index.d.ts.map +1 -1
- package/web/index.js +34 -62
- package/web/runtime/atmosphere.d.ts +12 -0
- package/web/runtime/atmosphere.d.ts.map +1 -0
- package/web/runtime/atmosphere.js +22 -0
- package/web/runtime/dummy.d.ts +11 -0
- package/web/runtime/dummy.d.ts.map +1 -0
- package/web/runtime/dummy.js +22 -0
- package/web/runtime/index.d.ts +8 -9
- package/web/runtime/index.d.ts.map +1 -1
- package/web/runtime/performanceMetricReporter.d.ts +8 -0
- package/web/runtime/performanceMetricReporter.d.ts.map +1 -0
- package/web/runtime/performanceMetricReporter.js +10 -0
- package/web/runtime/runtimeRegistry.d.ts +21 -5
- package/web/runtime/runtimeRegistry.d.ts.map +1 -1
- package/web/runtime/runtimeRegistry.js +22 -7
- package/web/runtime/sourceDataFactory.d.ts +7 -0
- package/web/runtime/sourceDataFactory.d.ts.map +1 -0
- package/web/runtime/sourceDataFactory.js +26 -0
- package/web/{producer → runtime}/types.d.ts +2 -7
- package/web/runtime/types.d.ts.map +1 -0
- package/dummy/catalogs/group.d.ts +0 -10
- package/dummy/catalogs/group.d.ts.map +0 -1
- package/dummy/catalogs/group.js +0 -46
- package/dummy/runtime/dummy.d.ts.map +0 -1
- package/dummy/runtime/simulation.d.ts.map +0 -1
- package/libs/observability/mf/src/browserRuntimeHandles.js +0 -350
- package/libs/observability/mf/src/diagnosticPolicies/catalog.js +0 -12
- package/libs/observability/mf/src/diagnosticPolicies/contracts.js +0 -8
- package/libs/observability/mf/src/diagnosticPolicies/host.js +0 -127
- package/libs/observability/mf/src/diagnosticPolicies/operativeMyGpsDevices.js +0 -79
- package/web/consumer/RealTimeConsumerContext.d.ts +0 -10
- package/web/consumer/RealTimeConsumerContext.d.ts.map +0 -1
- package/web/consumer/RealTimeConsumerContext.js +0 -156
- package/web/consumer/index.d.ts +0 -6
- package/web/consumer/index.d.ts.map +0 -1
- package/web/consumer/store.d.ts +0 -10
- package/web/consumer/store.d.ts.map +0 -1
- package/web/consumer/store.helpers.d.ts +0 -62
- package/web/consumer/store.helpers.d.ts.map +0 -1
- package/web/consumer/store.helpers.js +0 -141
- package/web/consumer/store.js +0 -227
- package/web/consumer/types.d.ts +0 -161
- package/web/consumer/types.d.ts.map +0 -1
- package/web/consumer/useRealTimeConsumer.d.ts.map +0 -1
- package/web/host/startupSnapshots.d.ts +0 -45
- package/web/host/startupSnapshots.d.ts.map +0 -1
- package/web/host/startupSnapshots.js +0 -103
- package/web/producer/RealTimeProducerContext.d.ts +0 -9
- package/web/producer/RealTimeProducerContext.d.ts.map +0 -1
- package/web/producer/RealTimeProducerContext.js +0 -16
- package/web/producer/index.d.ts +0 -7
- package/web/producer/index.d.ts.map +0 -1
- package/web/producer/sourceDataFactory.d.ts +0 -13
- package/web/producer/sourceDataFactory.d.ts.map +0 -1
- package/web/producer/sourceDataFactory.js +0 -32
- package/web/producer/store.d.ts +0 -7
- package/web/producer/store.d.ts.map +0 -1
- package/web/producer/store.js +0 -5
- package/web/producer/types.d.ts.map +0 -1
- package/web/producer/useRealTimeProducer.d.ts +0 -7
- package/web/producer/useRealTimeProducer.d.ts.map +0 -1
- package/web/producer/useRealTimeProducer.js +0 -15
- package/web/runtime/resourceTypeMergeStrategies.d.ts +0 -10
- package/web/runtime/resourceTypeMergeStrategies.d.ts.map +0 -1
- package/web/runtime/resourceTypeMergeStrategies.js +0 -19
- package/web/runtime/runtime.d.ts +0 -16
- package/web/runtime/runtime.d.ts.map +0 -1
- package/web/runtime/runtime.js +0 -28
- package/web/runtime/runtimeAtmosphereOnly.d.ts +0 -11
- package/web/runtime/runtimeAtmosphereOnly.d.ts.map +0 -1
- package/web/runtime/runtimeAtmosphereOnly.js +0 -28
- package/web/runtime/runtimeRegistry.shared.d.ts +0 -23
- package/web/runtime/runtimeRegistry.shared.d.ts.map +0 -1
- package/web/runtime/runtimeRegistry.shared.js +0 -47
- package/web/runtime/runtimeRegistryAtmosphereOnly.d.ts +0 -9
- package/web/runtime/runtimeRegistryAtmosphereOnly.d.ts.map +0 -1
- package/web/runtime/runtimeRegistryAtmosphereOnly.js +0 -13
- package/web/shared/constants.d.ts +0 -11
- package/web/shared/constants.d.ts.map +0 -1
- package/web/shared/constants.js +0 -11
- package/web/shared/index.d.ts +0 -3
- package/web/shared/index.d.ts.map +0 -1
- package/web/shared/performanceMetrics.d.ts +0 -48
- package/web/shared/performanceMetrics.d.ts.map +0 -1
- package/web/shared/performanceMetrics.js +0 -70
- package/web/shared/runtimeTypes.d.ts +0 -4
- package/web/shared/runtimeTypes.d.ts.map +0 -1
- /package/{web/consumer → consumer}/useRealTimeConsumer.d.ts +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { REAL_TIME_DUMMY_DEFAULT_ICON_ID as
|
|
1
|
+
import { department3 as o, department7 as t, department6 as r, department5 as n, department4 as a, department2 as c, department1 as i, departmentForest as _ } from "./departments.js";
|
|
2
|
+
import { REAL_TIME_DUMMY_DEFAULT_ICON_ID as l } from "./baseDeviceTemplate.js";
|
|
3
3
|
const e = {
|
|
4
4
|
HEAVY_TRUCK: "i_common_devices_type_heavy_truck",
|
|
5
|
-
LIGHT_TRUCK:
|
|
5
|
+
LIGHT_TRUCK: l,
|
|
6
6
|
MOTORCYCLE: "i_common_devices_type_motorcycle",
|
|
7
7
|
SEDAN: "i_common_devices_type_sedan",
|
|
8
8
|
TRUCK_TRACTOR: "i_common_devices_type_truck_tractor",
|
|
9
9
|
VAN: "i_common_devices_type_van"
|
|
10
|
-
},
|
|
10
|
+
}, m = [
|
|
11
11
|
1e4,
|
|
12
12
|
10001,
|
|
13
13
|
10002,
|
|
@@ -16,22 +16,13 @@ const e = {
|
|
|
16
16
|
10005,
|
|
17
17
|
10006,
|
|
18
18
|
10007
|
|
19
|
-
]
|
|
20
|
-
function o(t) {
|
|
21
|
-
return {
|
|
22
|
-
color: t.bgColor,
|
|
23
|
-
id: t.id,
|
|
24
|
-
name: t.name
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
const C = {
|
|
19
|
+
], s = {
|
|
28
20
|
forest_truck: {
|
|
29
21
|
active: !1,
|
|
30
22
|
alias: "North ridge",
|
|
31
23
|
blueprintId: "forest_truck",
|
|
32
|
-
department:
|
|
33
|
-
|
|
34
|
-
iconBgColor: p.bgColor,
|
|
24
|
+
department: _,
|
|
25
|
+
iconBgColor: _.color,
|
|
35
26
|
iconId: e.HEAVY_TRUCK,
|
|
36
27
|
name: "Atlas 01",
|
|
37
28
|
settingsPatch: {
|
|
@@ -46,77 +37,69 @@ const C = {
|
|
|
46
37
|
orchid_van: {
|
|
47
38
|
alias: "Industrial belt",
|
|
48
39
|
blueprintId: "orchid_van",
|
|
49
|
-
department:
|
|
50
|
-
|
|
51
|
-
iconBgColor: l.bgColor,
|
|
40
|
+
department: i,
|
|
41
|
+
iconBgColor: i.color,
|
|
52
42
|
iconId: e.VAN,
|
|
53
43
|
name: "Orchid Van"
|
|
54
44
|
},
|
|
55
45
|
teal_pickup: {
|
|
56
46
|
alias: "Delivery east",
|
|
57
47
|
blueprintId: "teal_pickup",
|
|
58
|
-
department:
|
|
59
|
-
|
|
60
|
-
iconBgColor: _.bgColor,
|
|
48
|
+
department: c,
|
|
49
|
+
iconBgColor: c.color,
|
|
61
50
|
iconId: e.LIGHT_TRUCK,
|
|
62
51
|
name: "Teal Pickup"
|
|
63
52
|
},
|
|
64
53
|
charcoal_sedan: {
|
|
65
54
|
alias: "Central commute",
|
|
66
55
|
blueprintId: "charcoal_sedan",
|
|
67
|
-
department: o
|
|
68
|
-
|
|
69
|
-
iconBgColor: r.bgColor,
|
|
56
|
+
department: o,
|
|
57
|
+
iconBgColor: o.color,
|
|
70
58
|
iconId: e.SEDAN,
|
|
71
59
|
name: "Charcoal Sedan"
|
|
72
60
|
},
|
|
73
61
|
sand_box_truck: {
|
|
74
62
|
alias: "Warehouse south",
|
|
75
63
|
blueprintId: "sand_box_truck",
|
|
76
|
-
department:
|
|
77
|
-
|
|
78
|
-
iconBgColor: c.bgColor,
|
|
64
|
+
department: a,
|
|
65
|
+
iconBgColor: a.color,
|
|
79
66
|
iconId: e.HEAVY_TRUCK,
|
|
80
67
|
name: "Sand Box"
|
|
81
68
|
},
|
|
82
69
|
yellow_service: {
|
|
83
70
|
alias: "Service loop",
|
|
84
71
|
blueprintId: "yellow_service",
|
|
85
|
-
department:
|
|
86
|
-
|
|
87
|
-
iconBgColor: i.bgColor,
|
|
72
|
+
department: n,
|
|
73
|
+
iconBgColor: n.color,
|
|
88
74
|
iconId: e.MOTORCYCLE,
|
|
89
75
|
name: "Service 07"
|
|
90
76
|
},
|
|
91
77
|
red_tractor: {
|
|
92
78
|
alias: "Yard cycle",
|
|
93
79
|
blueprintId: "red_tractor",
|
|
94
|
-
department:
|
|
95
|
-
|
|
96
|
-
iconBgColor: a.bgColor,
|
|
80
|
+
department: r,
|
|
81
|
+
iconBgColor: r.color,
|
|
97
82
|
iconId: e.TRUCK_TRACTOR,
|
|
98
83
|
name: "Red Tractor"
|
|
99
84
|
},
|
|
100
85
|
blue_city_car: {
|
|
101
86
|
alias: "City shuttle",
|
|
102
87
|
blueprintId: "blue_city_car",
|
|
103
|
-
department:
|
|
104
|
-
|
|
105
|
-
iconBgColor: n.bgColor,
|
|
88
|
+
department: t,
|
|
89
|
+
iconBgColor: t.color,
|
|
106
90
|
iconId: e.SEDAN,
|
|
107
91
|
name: "Blue City"
|
|
108
92
|
},
|
|
109
93
|
bootstrap_pending_icon: {
|
|
110
94
|
alias: "Catalog pending",
|
|
111
95
|
blueprintId: "bootstrap_pending_icon",
|
|
112
|
-
department: o
|
|
113
|
-
|
|
114
|
-
iconBgColor: r.bgColor,
|
|
96
|
+
department: o,
|
|
97
|
+
iconBgColor: o.color,
|
|
115
98
|
name: "Bootstrap Pending",
|
|
116
99
|
omitDeviceIcon: !0
|
|
117
100
|
}
|
|
118
101
|
};
|
|
119
102
|
export {
|
|
120
|
-
|
|
121
|
-
|
|
103
|
+
s as REAL_TIME_DUMMY_DEVICE_BLUEPRINTS,
|
|
104
|
+
m as REAL_TIME_DUMMY_DEVICE_IDS
|
|
122
105
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DeviceDepartment } from '../../contracts/index';
|
|
2
|
+
export declare const departmentForest: DeviceDepartment;
|
|
3
|
+
export declare const department1: DeviceDepartment;
|
|
4
|
+
export declare const department2: DeviceDepartment;
|
|
5
|
+
export declare const department3: DeviceDepartment;
|
|
6
|
+
export declare const department4: DeviceDepartment;
|
|
7
|
+
export declare const department5: DeviceDepartment;
|
|
8
|
+
export declare const department6: DeviceDepartment;
|
|
9
|
+
export declare const department7: DeviceDepartment;
|
|
10
|
+
//# sourceMappingURL=departments.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"departments.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/dummy/catalogs/departments.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,eAAO,MAAM,gBAAgB,EAAE,gBAI9B,CAAC;AACF,eAAO,MAAM,WAAW,EAAE,gBAIzB,CAAC;AACF,eAAO,MAAM,WAAW,EAAE,gBAIzB,CAAC;AACF,eAAO,MAAM,WAAW,EAAE,gBAIzB,CAAC;AACF,eAAO,MAAM,WAAW,EAAE,gBAIzB,CAAC;AACF,eAAO,MAAM,WAAW,EAAE,gBAIzB,CAAC;AACF,eAAO,MAAM,WAAW,EAAE,gBAIzB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,gBAIzB,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
id: 1,
|
|
3
|
+
name: "North Ridge Logistics",
|
|
4
|
+
color: "#2F855A"
|
|
5
|
+
}, t = {
|
|
6
|
+
id: 8,
|
|
7
|
+
name: "Industrial Dispatch",
|
|
8
|
+
color: "#B45BAB"
|
|
9
|
+
}, o = {
|
|
10
|
+
id: 2,
|
|
11
|
+
name: "Delivery East",
|
|
12
|
+
color: "#24A188"
|
|
13
|
+
}, n = {
|
|
14
|
+
id: 3,
|
|
15
|
+
name: "Central Commute",
|
|
16
|
+
color: "#334155"
|
|
17
|
+
}, r = {
|
|
18
|
+
id: 4,
|
|
19
|
+
name: "Warehouse South",
|
|
20
|
+
color: "#C7872F"
|
|
21
|
+
}, a = {
|
|
22
|
+
id: 5,
|
|
23
|
+
name: "Field Service",
|
|
24
|
+
color: "#D9A404"
|
|
25
|
+
}, d = {
|
|
26
|
+
id: 6,
|
|
27
|
+
name: "Yard Operations",
|
|
28
|
+
color: "#E24A3B"
|
|
29
|
+
}, c = {
|
|
30
|
+
id: 7,
|
|
31
|
+
name: "City Shuttle",
|
|
32
|
+
color: "#2563EB"
|
|
33
|
+
};
|
|
34
|
+
export {
|
|
35
|
+
t as department1,
|
|
36
|
+
o as department2,
|
|
37
|
+
n as department3,
|
|
38
|
+
r as department4,
|
|
39
|
+
a as department5,
|
|
40
|
+
d as department6,
|
|
41
|
+
c as department7,
|
|
42
|
+
e as departmentForest
|
|
43
|
+
};
|
package/dummy/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export type { RealTimeDummyCoordinate, RealTimeDummyDeleteSegment, RealTimeDummyDeletePhase, RealTimeDummyDeviceBlueprint, RealTimeDummyDriveSegment, RealTimeDummyDrivePhase, RealTimeDummyExecutionPhase, RealTimeDummyExecutionPhaseBase, RealTimeDummyExecutionPlan, RealTimeDummyExecutionPlanSegment, RealTimeDummyExecutionStateOverrides, RealTimeDummyGeneratedRouteArtifact, RealTimeDummyGeneratedRouteArtifactSampledPoint, RealTimeDummyGeneratedRoutesCatalog, RealTimeDummyGooglePolylineQuality, RealTimeDummyGoogleRoutingPreference, RealTimeDummyGoogleTrafficModel, RealTimeDummyGoogleTrafficSpeedCategory, RealTimeDummyGoogleTravelMode, RealTimeDummyIdleSegment, RealTimeDummyIdlePhase, RealTimeDummyMessagePayloadPatch, RealTimeDummyNumericRangeExpectation, RealTimeDummyScenarioDefinition, RealTimeDummyScenarioDevice, RealTimeDummySimulationConfig, RealTimeDummySimulationPlayback, RealTimeDummySimulationPresetDefinition, RealTimeDummyRouteSeed, RealTimeDummyRouteSeedIntermediate, RealTimeDummyRouteSeedLocation, RealTimeDummyRouteSeedPassThrough, RealTimeDummyRouteTemplate, RealTimeDummyRouteWaypoint, RealTimeResourceSerialId, RealTimeResourceSourceMechanismConfigDummy, } from './shared/types';
|
|
2
2
|
export { REAL_TIME_DUMMY_BASE_DEVICE_TEMPLATE, REAL_TIME_DUMMY_DEFAULT_ICON_ID, } from './catalogs/baseDeviceTemplate';
|
|
3
|
-
export {
|
|
3
|
+
export { department1, department2, department3, department4, department5, department6, department7, departmentForest, } from './catalogs/departments';
|
|
4
4
|
export { REAL_TIME_DUMMY_DEVICE_BLUEPRINTS, REAL_TIME_DUMMY_DEVICE_IDS, type RealTimeDummyBlueprintId, } from './catalogs/blueprints';
|
|
5
5
|
export { REAL_TIME_DUMMY_EXECUTION_PLANS, type RealTimeDummyExecutionPlanId, } from './catalogs/plans';
|
|
6
6
|
export { calculateCourseDegrees, calculateDistanceMeters, calculatePolylineDistanceMeters, degreesToRadians, densifyRouteWaypoints, interpolateCoordinate, radiansToDegrees, resolveFrameSpeedKph, } from './shared/helpers';
|
|
@@ -10,6 +10,6 @@ export { REAL_TIME_DUMMY_ROUTE_SEEDS } from './toolchain/routeSeeds';
|
|
|
10
10
|
export { REAL_TIME_DUMMY_ROUTE_TEMPLATES, type RealTimeDummyRouteId, } from './catalogs/routes';
|
|
11
11
|
export { REAL_TIME_DUMMY_DEFAULT_PLAYBACK, REAL_TIME_DUMMY_DEFAULT_SCENARIO_ID, REAL_TIME_DUMMY_SCENARIOS, type RealTimeDummyScenarioId, } from './catalogs/scenarios';
|
|
12
12
|
export { createRealTimeDummySimulationConfigFromPreset, REAL_TIME_DUMMY_DEFAULT_PRESET_ID, REAL_TIME_DUMMY_SIMULATION_PRESETS, RealTimeDummySimulationPresetId, } from './catalogs/presets';
|
|
13
|
-
export { type RealTimeDummyRuntimeDevice, type RealTimeDummyRuntimeModel, buildRealTimeDummyRuntimeModel, createRealTimeDummyInitialResources, createRealTimeDummyResourceTypeConfig, createRealTimeDummyResourceTypeConfigFromPreset, } from './
|
|
14
|
-
export { SourceDataDummy, } from './
|
|
13
|
+
export { type RealTimeDummyRuntimeDevice, type RealTimeDummyRuntimeModel, buildRealTimeDummyRuntimeModel, createRealTimeDummyInitialResources, createRealTimeDummyResourceTypeConfig, createRealTimeDummyResourceTypeConfigFromPreset, } from './simulation/simulation';
|
|
14
|
+
export { SourceDataDummy, } from './source-data/SourceDataDummy';
|
|
15
15
|
//# sourceMappingURL=index.d.ts.map
|
package/dummy/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/gclick-realtime/src/dummy/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,uBAAuB,EACvB,0BAA0B,EAC1B,wBAAwB,EACxB,4BAA4B,EAC5B,yBAAyB,EACzB,uBAAuB,EACvB,2BAA2B,EAC3B,+BAA+B,EAC/B,0BAA0B,EAC1B,iCAAiC,EACjC,oCAAoC,EACpC,mCAAmC,EACnC,+CAA+C,EAC/C,mCAAmC,EACnC,kCAAkC,EAClC,oCAAoC,EACpC,+BAA+B,EAC/B,uCAAuC,EACvC,6BAA6B,EAC7B,wBAAwB,EACxB,sBAAsB,EACtB,gCAAgC,EAChC,oCAAoC,EACpC,+BAA+B,EAC/B,2BAA2B,EAC3B,6BAA6B,EAC7B,+BAA+B,EAC/B,uCAAuC,EACvC,sBAAsB,EACtB,kCAAkC,EAClC,8BAA8B,EAC9B,iCAAiC,EACjC,0BAA0B,EAC1B,0BAA0B,EAC1B,wBAAwB,EACxB,0CAA0C,GAC3C,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,oCAAoC,EACpC,+BAA+B,GAChC,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/gclick-realtime/src/dummy/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,uBAAuB,EACvB,0BAA0B,EAC1B,wBAAwB,EACxB,4BAA4B,EAC5B,yBAAyB,EACzB,uBAAuB,EACvB,2BAA2B,EAC3B,+BAA+B,EAC/B,0BAA0B,EAC1B,iCAAiC,EACjC,oCAAoC,EACpC,mCAAmC,EACnC,+CAA+C,EAC/C,mCAAmC,EACnC,kCAAkC,EAClC,oCAAoC,EACpC,+BAA+B,EAC/B,uCAAuC,EACvC,6BAA6B,EAC7B,wBAAwB,EACxB,sBAAsB,EACtB,gCAAgC,EAChC,oCAAoC,EACpC,+BAA+B,EAC/B,2BAA2B,EAC3B,6BAA6B,EAC7B,+BAA+B,EAC/B,uCAAuC,EACvC,sBAAsB,EACtB,kCAAkC,EAClC,8BAA8B,EAC9B,iCAAiC,EACjC,0BAA0B,EAC1B,0BAA0B,EAC1B,wBAAwB,EACxB,0CAA0C,GAC3C,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,oCAAoC,EACpC,+BAA+B,GAChC,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,WAAW,EACX,WAAW,EACX,WAAW,EACX,WAAW,EACX,WAAW,EACX,WAAW,EACX,WAAW,EACX,gBAAgB,GACjB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,iCAAiC,EACjC,0BAA0B,EAC1B,KAAK,wBAAwB,GAC9B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,+BAA+B,EAC/B,KAAK,4BAA4B,GAClC,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,+BAA+B,EAC/B,gBAAgB,EAChB,qBAAqB,EACrB,qBAAqB,EACrB,gBAAgB,EAChB,oBAAoB,GACrB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,2CAA2C,EAC3C,6BAA6B,EAC7B,wCAAwC,EACxC,2BAA2B,EAC3B,0BAA0B,EAC1B,8BAA8B,GAC/B,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAE,yCAAyC,EAAE,MAAM,6BAA6B,CAAC;AACxF,OAAO,EAAE,2BAA2B,EAAE,MAAM,wBAAwB,CAAC;AACrE,OAAO,EACL,+BAA+B,EAC/B,KAAK,oBAAoB,GAC1B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,gCAAgC,EAChC,mCAAmC,EACnC,yBAAyB,EACzB,KAAK,uBAAuB,GAC7B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,6CAA6C,EAC7C,iCAAiC,EACjC,kCAAkC,EAClC,+BAA+B,GAChC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,KAAK,0BAA0B,EAC/B,KAAK,yBAAyB,EAC9B,8BAA8B,EAC9B,mCAAmC,EACnC,qCAAqC,EACrC,+CAA+C,GAChD,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,eAAe,GAChB,MAAM,+BAA+B,CAAC"}
|
package/dummy/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { REAL_TIME_DUMMY_BASE_DEVICE_TEMPLATE as r, REAL_TIME_DUMMY_DEFAULT_ICON_ID as
|
|
2
|
-
import {
|
|
1
|
+
import { REAL_TIME_DUMMY_BASE_DEVICE_TEMPLATE as r, REAL_TIME_DUMMY_DEFAULT_ICON_ID as o } from "./catalogs/baseDeviceTemplate.js";
|
|
2
|
+
import { department1 as _, department2 as a, department3 as m, department4 as M, department5 as T, department6 as R, department7 as D, departmentForest as i } from "./catalogs/departments.js";
|
|
3
3
|
import { REAL_TIME_DUMMY_DEVICE_BLUEPRINTS as A, REAL_TIME_DUMMY_DEVICE_IDS as p } from "./catalogs/blueprints.js";
|
|
4
4
|
import { REAL_TIME_DUMMY_EXECUTION_PLANS as l } from "./catalogs/plans.js";
|
|
5
|
-
import { calculateCourseDegrees as
|
|
6
|
-
import { createGeneratedRouteArtifactFromGoogleRoute as
|
|
5
|
+
import { calculateCourseDegrees as u, calculateDistanceMeters as c, calculatePolylineDistanceMeters as s, degreesToRadians as L, densifyRouteWaypoints as U, interpolateCoordinate as f, radiansToDegrees as S, resolveFrameSpeedKph as x } from "./shared/helpers.js";
|
|
6
|
+
import { createGeneratedRouteArtifactFromGoogleRoute as Y, createGeneratedRouteTemplates as y, createRouteTemplateFromGeneratedArtifact as P, decodeGoogleEncodedPolyline as F, parseGoogleDurationSeconds as g, validateGeneratedRouteArtifact as G } from "./toolchain/generatedRoutes.helpers.js";
|
|
7
7
|
import { REAL_TIME_DUMMY_GENERATED_ROUTE_ARTIFACTS as O } from "./toolchain/generatedRoutes.js";
|
|
8
8
|
import { REAL_TIME_DUMMY_ROUTE_SEEDS as V } from "./toolchain/routeSeeds.js";
|
|
9
9
|
import { REAL_TIME_DUMMY_ROUTE_TEMPLATES as K } from "./catalogs/routes.js";
|
|
10
10
|
import { REAL_TIME_DUMMY_DEFAULT_PLAYBACK as h, REAL_TIME_DUMMY_DEFAULT_SCENARIO_ID as W, REAL_TIME_DUMMY_SCENARIOS as X } from "./catalogs/scenarios.js";
|
|
11
11
|
import { REAL_TIME_DUMMY_DEFAULT_PRESET_ID as k, REAL_TIME_DUMMY_SIMULATION_PRESETS as q, createRealTimeDummySimulationConfigFromPreset as w } from "./catalogs/presets.js";
|
|
12
|
-
import { buildRealTimeDummyRuntimeModel as H, createRealTimeDummyInitialResources as J, createRealTimeDummyResourceTypeConfig as Q, createRealTimeDummyResourceTypeConfigFromPreset as Z } from "./
|
|
13
|
-
import { SourceDataDummy as ee } from "./
|
|
12
|
+
import { buildRealTimeDummyRuntimeModel as H, createRealTimeDummyInitialResources as J, createRealTimeDummyResourceTypeConfig as Q, createRealTimeDummyResourceTypeConfigFromPreset as Z } from "./simulation/simulation.js";
|
|
13
|
+
import { SourceDataDummy as ee } from "./source-data/SourceDataDummy.js";
|
|
14
14
|
import { RealTimeDummySimulationPresetId as re } from "../fixtures/types.js";
|
|
15
15
|
export {
|
|
16
16
|
r as REAL_TIME_DUMMY_BASE_DEVICE_TEMPLATE,
|
|
17
|
-
|
|
17
|
+
o as REAL_TIME_DUMMY_DEFAULT_ICON_ID,
|
|
18
18
|
h as REAL_TIME_DUMMY_DEFAULT_PLAYBACK,
|
|
19
19
|
k as REAL_TIME_DUMMY_DEFAULT_PRESET_ID,
|
|
20
20
|
W as REAL_TIME_DUMMY_DEFAULT_SCENARIO_ID,
|
|
@@ -29,30 +29,30 @@ export {
|
|
|
29
29
|
re as RealTimeDummySimulationPresetId,
|
|
30
30
|
ee as SourceDataDummy,
|
|
31
31
|
H as buildRealTimeDummyRuntimeModel,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
32
|
+
u as calculateCourseDegrees,
|
|
33
|
+
c as calculateDistanceMeters,
|
|
34
|
+
s as calculatePolylineDistanceMeters,
|
|
35
|
+
Y as createGeneratedRouteArtifactFromGoogleRoute,
|
|
36
|
+
y as createGeneratedRouteTemplates,
|
|
37
37
|
J as createRealTimeDummyInitialResources,
|
|
38
38
|
Q as createRealTimeDummyResourceTypeConfig,
|
|
39
39
|
Z as createRealTimeDummyResourceTypeConfigFromPreset,
|
|
40
40
|
w as createRealTimeDummySimulationConfigFromPreset,
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
_ as
|
|
46
|
-
a as
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
T as
|
|
50
|
-
R as
|
|
51
|
-
D as
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
41
|
+
P as createRouteTemplateFromGeneratedArtifact,
|
|
42
|
+
F as decodeGoogleEncodedPolyline,
|
|
43
|
+
L as degreesToRadians,
|
|
44
|
+
U as densifyRouteWaypoints,
|
|
45
|
+
_ as department1,
|
|
46
|
+
a as department2,
|
|
47
|
+
m as department3,
|
|
48
|
+
M as department4,
|
|
49
|
+
T as department5,
|
|
50
|
+
R as department6,
|
|
51
|
+
D as department7,
|
|
52
|
+
i as departmentForest,
|
|
53
|
+
f as interpolateCoordinate,
|
|
54
|
+
g as parseGoogleDurationSeconds,
|
|
55
|
+
S as radiansToDegrees,
|
|
56
|
+
x as resolveFrameSpeedKph,
|
|
57
57
|
G as validateGeneratedRouteArtifact
|
|
58
58
|
};
|
package/dummy/shared/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RealTimeResourceSourceMechanismConfigBase } from '@m4l/realtime-runtime';
|
|
1
|
+
import { RealTimeResourceSourceMechanismConfigBase } from '@m4l/realtime-runtime/shared';
|
|
2
2
|
import { DeviceCurrent, DeviceDepartment, DeviceSettings, GNSSEnumMotionStatus, GNSSEnumSignal } from '../../contracts/index';
|
|
3
3
|
/**
|
|
4
4
|
* Geographic coordinate used by deterministic dummy playback.
|
|
@@ -164,7 +164,6 @@ export interface RealTimeDummyDeviceBlueprint {
|
|
|
164
164
|
blueprintId: string;
|
|
165
165
|
currentPatch?: Partial<DeviceCurrent>;
|
|
166
166
|
department?: DeviceDepartment;
|
|
167
|
-
group?: DeviceSettings['group'];
|
|
168
167
|
iconBgColor?: DeviceSettings['iconBgColor'];
|
|
169
168
|
/**
|
|
170
169
|
* Backend-aligned device icon id projected into the shared realtime contract.
|
|
@@ -175,7 +174,7 @@ export interface RealTimeDummyDeviceBlueprint {
|
|
|
175
174
|
*/
|
|
176
175
|
omitDeviceIcon?: boolean;
|
|
177
176
|
name: string;
|
|
178
|
-
settingsPatch?: Partial<Omit<DeviceSettings, 'active' | 'alias' | '
|
|
177
|
+
settingsPatch?: Partial<Omit<DeviceSettings, 'active' | 'alias' | 'iconBgColor' | 'iconId' | 'name'>>;
|
|
179
178
|
}
|
|
180
179
|
/**
|
|
181
180
|
* Stateful overrides applied while one dummy execution phase runs.
|
|
@@ -288,7 +287,6 @@ export interface RealTimeDummyScenarioDevice {
|
|
|
288
287
|
*/
|
|
289
288
|
emissionOffsetMs?: number;
|
|
290
289
|
department?: DeviceDepartment;
|
|
291
|
-
group?: DeviceSettings['group'];
|
|
292
290
|
iconBgColor?: DeviceSettings['iconBgColor'];
|
|
293
291
|
/**
|
|
294
292
|
* Backend-aligned device icon id projected into the shared realtime contract.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/dummy/shared/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yCAAyC,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/dummy/shared/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RealTimeMessage, RealTimeResourceSerialId, RealTimeResourceTypeId } from '@m4l/realtime-runtime';
|
|
1
|
+
import { RealTimeMessage, RealTimeResourceSerialId, RealTimeResourceTypeId } from '@m4l/realtime-runtime/shared';
|
|
2
2
|
import { DeviceDataType } from '../../contracts/index';
|
|
3
3
|
import { RealTimeDummySimulationConfig, RealTimeDummySimulationPlayback, RealTimeResourceSourceMechanismConfigDummy } from '../shared/types';
|
|
4
4
|
interface RealTimeDummyRuntimeBuildOptions {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simulation.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/dummy/simulation/simulation.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,eAAe,EACf,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,KAAK,EAAiB,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAM3E,OAAO,KAAK,EAUV,6BAA6B,EAC7B,+BAA+B,EAC/B,0CAA0C,EAC3C,MAAM,iBAAiB,CAAC;AA2CzB,UAAU,gCAAgC;IACxC,cAAc,CAAC,EAAE,sBAAsB,CAAC;IACxC,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAoGD,UAAU,4CAA4C;IACpD,cAAc,EAAE,sBAAsB,CAAC;IACvC,UAAU,CAAC,EAAE,6BAA6B,CAAC;CAC5C;AAED,UAAU,sDAAsD;IAC9D,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,sBAAsB,CAAC;IACvC,mBAAmB,CAAC,EAAE,6BAA6B,CAAC;CACrD;AAED,MAAM,WAAW,0BAA0B;IACzC,gBAAgB,EAAE,MAAM,CAAC;IACzB,eAAe,EAAE,cAAc,CAAC;IAChC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B,gBAAgB,EAAE,wBAAwB,CAAC;CAC5C;AAED,MAAM,WAAW,yBAAyB;IACxC,OAAO,EAAE,0BAA0B,EAAE,CAAC;IACtC,QAAQ,EAAE,QAAQ,CAAC,+BAA+B,CAAC,CAAC;CACrD;AAssDD;;GAEG;AACH,wBAAgB,8BAA8B,CAC5C,UAAU,CAAC,EAAE,6BAA6B,EAC1C,OAAO,CAAC,EAAE,gCAAgC,GACzC,yBAAyB,CAqC3B;AAED;;GAEG;AACH,wBAAgB,mCAAmC,CACjD,UAAU,CAAC,EAAE,6BAA6B,EAC1C,OAAO,CAAC,EAAE,gCAAgC,kCAgB3C;AAED;;GAEG;AACH,wBAAgB,qCAAqC,CAAC,EACpD,cAAc,EACd,UAAU,GACX,EAAE,4CAA4C,GAAG,0CAA0C,CAY3F;AAED;;GAEG;AACH,wBAAgB,+CAA+C,CAAC,EAC9D,QAAQ,EACR,cAAc,EACd,mBAAmB,GACpB,EAAE,sDAAsD,GAAG,0CAA0C,CAQrG"}
|