@bslau/hmm_message_lib 1.1.0 → 1.1.2
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/dist/index.d.mts +9 -4
- package/dist/index.d.ts +9 -4
- package/dist/index.js +6 -3
- package/dist/index.mjs +6 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -18,7 +18,7 @@ declare enum HMMEvents {
|
|
|
18
18
|
TORPEDO_MOVEMENT_OOS_ARRIVE = "TORPEDO_MOVEMENT_OOS_ARRIVE",
|
|
19
19
|
TORPEDO_MOVEMENT_OOS_DEPART = "TORPEDO_MOVEMENT_OOS_DEPART",
|
|
20
20
|
TORPEDO_MOVEMENT_RMBREAK_ARRIVE = "TORPEDO_MOVEMENT_RMBREAK_ARRIVE",
|
|
21
|
-
|
|
21
|
+
TORPEDO_MOVEMENT_RMBREAK_DEPART = "TORPEDO_MOVEMENT_RMBREAK_DEPART",
|
|
22
22
|
POT_CONSUMED = "POT_CONSUMED"
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -42,12 +42,16 @@ declare enum HMMEventsRoutingKeys {
|
|
|
42
42
|
TORPEDO_MOVEMENT_OOS_ARRIVE_ROUTING_KEY = "HMM.Events.Torpedo.Movement.OutOfServiceArrive",
|
|
43
43
|
TORPEDO_MOVEMENT_OOS_DEPART_ROUTING_KEY = "HMM.Events.Torpedo.Movement.OutOfServiceDepart",
|
|
44
44
|
TORPEDO_MOVEMENT_RMBREAK_ARRIVE_ROUTING_KEY = "HMM.Events.Torpedo.Movement.RMBreakArrive",
|
|
45
|
-
|
|
45
|
+
TORPEDO_MOVEMENT_RMBREAK_DEPART_ROUTING_KEY = "HMM.Events.Torpedo.Movement.RMBreakDepart",
|
|
46
46
|
POT_CONSUMED_ROUTING_KEY = "HMM.Events.Pot.Consumed"
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
declare const hmmEventsMap: Map<HMMEvents, HMMEventsRoutingKeys>;
|
|
50
50
|
|
|
51
|
+
interface MessageTorpedoEmptyBOSEmpty {
|
|
52
|
+
torpedoId: number;
|
|
53
|
+
hotMetalId: number;
|
|
54
|
+
}
|
|
51
55
|
interface MessageTorpedoEmptyManual {
|
|
52
56
|
torpedoId: number;
|
|
53
57
|
hotMetalId: number;
|
|
@@ -70,10 +74,10 @@ interface MessageTorpedoMovement {
|
|
|
70
74
|
}
|
|
71
75
|
interface MessageTorpedoMovementEvent {
|
|
72
76
|
torpedoId: number;
|
|
73
|
-
eventTorpedoMovementId: number | null;
|
|
74
77
|
}
|
|
75
78
|
|
|
76
79
|
declare enum HMMProcessingResults {
|
|
80
|
+
TORPEDO_EMPTY_BOS_EMPTY = "TORPEDO_EMPTY_BOS_EMPTY",
|
|
77
81
|
TORPEDO_EMPTY_MANUAL = "TORPEDO_EMPTY_MANUAL",
|
|
78
82
|
TORPEDO_FILLING_FINISHED = "TORPEDO_FILLING_FINISHED",
|
|
79
83
|
TORPEDO_MOVEMENT_RECORDED = "TORPEDO_MOVEMENT_RECORDED",
|
|
@@ -81,6 +85,7 @@ declare enum HMMProcessingResults {
|
|
|
81
85
|
}
|
|
82
86
|
|
|
83
87
|
declare enum HMMProcessingRoutingKeys {
|
|
88
|
+
TORPEDO_EMPTY_BOS_EMPTY_ROUTING_KEY = "HMM.Processing.Results.Torpedo.Empty.BOS.Empty",
|
|
84
89
|
TORPEDO_EMPTY_MANUAL_ROUTING_KEY = "HMM.Processing.Results.Torpedo.Empty.Manual",
|
|
85
90
|
TORPEDO_FILLING_FINISHED_ROUTING_KEY = "HMM.Processing.Results.Torpedo.Filling.Finished",
|
|
86
91
|
TORPEDO_MOVEMENT_RECORDED_ROUTING_KEY = "HMM.Processing.Results.Torpedo.Movement.Recorded",
|
|
@@ -89,4 +94,4 @@ declare enum HMMProcessingRoutingKeys {
|
|
|
89
94
|
|
|
90
95
|
declare const hmmProcessingMap: Map<HMMProcessingResults, HMMProcessingRoutingKeys>;
|
|
91
96
|
|
|
92
|
-
export { HMMEvents, HMMEventsRoutingKeys, HMMProcessingResults, HMMProcessingRoutingKeys, type MessageTorpedoEmptyManual, type MessageTorpedoFillingFinished, type MessageTorpedoMaintenance, type MessageTorpedoMovement, type MessageTorpedoMovementEvent, hmmEventsMap, hmmProcessingMap };
|
|
97
|
+
export { HMMEvents, HMMEventsRoutingKeys, HMMProcessingResults, HMMProcessingRoutingKeys, type MessageTorpedoEmptyBOSEmpty, type MessageTorpedoEmptyManual, type MessageTorpedoFillingFinished, type MessageTorpedoMaintenance, type MessageTorpedoMovement, type MessageTorpedoMovementEvent, hmmEventsMap, hmmProcessingMap };
|
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare enum HMMEvents {
|
|
|
18
18
|
TORPEDO_MOVEMENT_OOS_ARRIVE = "TORPEDO_MOVEMENT_OOS_ARRIVE",
|
|
19
19
|
TORPEDO_MOVEMENT_OOS_DEPART = "TORPEDO_MOVEMENT_OOS_DEPART",
|
|
20
20
|
TORPEDO_MOVEMENT_RMBREAK_ARRIVE = "TORPEDO_MOVEMENT_RMBREAK_ARRIVE",
|
|
21
|
-
|
|
21
|
+
TORPEDO_MOVEMENT_RMBREAK_DEPART = "TORPEDO_MOVEMENT_RMBREAK_DEPART",
|
|
22
22
|
POT_CONSUMED = "POT_CONSUMED"
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -42,12 +42,16 @@ declare enum HMMEventsRoutingKeys {
|
|
|
42
42
|
TORPEDO_MOVEMENT_OOS_ARRIVE_ROUTING_KEY = "HMM.Events.Torpedo.Movement.OutOfServiceArrive",
|
|
43
43
|
TORPEDO_MOVEMENT_OOS_DEPART_ROUTING_KEY = "HMM.Events.Torpedo.Movement.OutOfServiceDepart",
|
|
44
44
|
TORPEDO_MOVEMENT_RMBREAK_ARRIVE_ROUTING_KEY = "HMM.Events.Torpedo.Movement.RMBreakArrive",
|
|
45
|
-
|
|
45
|
+
TORPEDO_MOVEMENT_RMBREAK_DEPART_ROUTING_KEY = "HMM.Events.Torpedo.Movement.RMBreakDepart",
|
|
46
46
|
POT_CONSUMED_ROUTING_KEY = "HMM.Events.Pot.Consumed"
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
declare const hmmEventsMap: Map<HMMEvents, HMMEventsRoutingKeys>;
|
|
50
50
|
|
|
51
|
+
interface MessageTorpedoEmptyBOSEmpty {
|
|
52
|
+
torpedoId: number;
|
|
53
|
+
hotMetalId: number;
|
|
54
|
+
}
|
|
51
55
|
interface MessageTorpedoEmptyManual {
|
|
52
56
|
torpedoId: number;
|
|
53
57
|
hotMetalId: number;
|
|
@@ -70,10 +74,10 @@ interface MessageTorpedoMovement {
|
|
|
70
74
|
}
|
|
71
75
|
interface MessageTorpedoMovementEvent {
|
|
72
76
|
torpedoId: number;
|
|
73
|
-
eventTorpedoMovementId: number | null;
|
|
74
77
|
}
|
|
75
78
|
|
|
76
79
|
declare enum HMMProcessingResults {
|
|
80
|
+
TORPEDO_EMPTY_BOS_EMPTY = "TORPEDO_EMPTY_BOS_EMPTY",
|
|
77
81
|
TORPEDO_EMPTY_MANUAL = "TORPEDO_EMPTY_MANUAL",
|
|
78
82
|
TORPEDO_FILLING_FINISHED = "TORPEDO_FILLING_FINISHED",
|
|
79
83
|
TORPEDO_MOVEMENT_RECORDED = "TORPEDO_MOVEMENT_RECORDED",
|
|
@@ -81,6 +85,7 @@ declare enum HMMProcessingResults {
|
|
|
81
85
|
}
|
|
82
86
|
|
|
83
87
|
declare enum HMMProcessingRoutingKeys {
|
|
88
|
+
TORPEDO_EMPTY_BOS_EMPTY_ROUTING_KEY = "HMM.Processing.Results.Torpedo.Empty.BOS.Empty",
|
|
84
89
|
TORPEDO_EMPTY_MANUAL_ROUTING_KEY = "HMM.Processing.Results.Torpedo.Empty.Manual",
|
|
85
90
|
TORPEDO_FILLING_FINISHED_ROUTING_KEY = "HMM.Processing.Results.Torpedo.Filling.Finished",
|
|
86
91
|
TORPEDO_MOVEMENT_RECORDED_ROUTING_KEY = "HMM.Processing.Results.Torpedo.Movement.Recorded",
|
|
@@ -89,4 +94,4 @@ declare enum HMMProcessingRoutingKeys {
|
|
|
89
94
|
|
|
90
95
|
declare const hmmProcessingMap: Map<HMMProcessingResults, HMMProcessingRoutingKeys>;
|
|
91
96
|
|
|
92
|
-
export { HMMEvents, HMMEventsRoutingKeys, HMMProcessingResults, HMMProcessingRoutingKeys, type MessageTorpedoEmptyManual, type MessageTorpedoFillingFinished, type MessageTorpedoMaintenance, type MessageTorpedoMovement, type MessageTorpedoMovementEvent, hmmEventsMap, hmmProcessingMap };
|
|
97
|
+
export { HMMEvents, HMMEventsRoutingKeys, HMMProcessingResults, HMMProcessingRoutingKeys, type MessageTorpedoEmptyBOSEmpty, type MessageTorpedoEmptyManual, type MessageTorpedoFillingFinished, type MessageTorpedoMaintenance, type MessageTorpedoMovement, type MessageTorpedoMovementEvent, hmmEventsMap, hmmProcessingMap };
|
package/dist/index.js
CHANGED
|
@@ -50,7 +50,7 @@ var HMMEvents = /* @__PURE__ */ ((HMMEvents2) => {
|
|
|
50
50
|
HMMEvents2["TORPEDO_MOVEMENT_OOS_ARRIVE"] = "TORPEDO_MOVEMENT_OOS_ARRIVE";
|
|
51
51
|
HMMEvents2["TORPEDO_MOVEMENT_OOS_DEPART"] = "TORPEDO_MOVEMENT_OOS_DEPART";
|
|
52
52
|
HMMEvents2["TORPEDO_MOVEMENT_RMBREAK_ARRIVE"] = "TORPEDO_MOVEMENT_RMBREAK_ARRIVE";
|
|
53
|
-
HMMEvents2["
|
|
53
|
+
HMMEvents2["TORPEDO_MOVEMENT_RMBREAK_DEPART"] = "TORPEDO_MOVEMENT_RMBREAK_DEPART";
|
|
54
54
|
HMMEvents2["POT_CONSUMED"] = "POT_CONSUMED";
|
|
55
55
|
return HMMEvents2;
|
|
56
56
|
})(HMMEvents || {});
|
|
@@ -76,7 +76,7 @@ var HMMEventsRoutingKeys = /* @__PURE__ */ ((HMMEventsRoutingKeys2) => {
|
|
|
76
76
|
HMMEventsRoutingKeys2["TORPEDO_MOVEMENT_OOS_ARRIVE_ROUTING_KEY"] = "HMM.Events.Torpedo.Movement.OutOfServiceArrive";
|
|
77
77
|
HMMEventsRoutingKeys2["TORPEDO_MOVEMENT_OOS_DEPART_ROUTING_KEY"] = "HMM.Events.Torpedo.Movement.OutOfServiceDepart";
|
|
78
78
|
HMMEventsRoutingKeys2["TORPEDO_MOVEMENT_RMBREAK_ARRIVE_ROUTING_KEY"] = "HMM.Events.Torpedo.Movement.RMBreakArrive";
|
|
79
|
-
HMMEventsRoutingKeys2["
|
|
79
|
+
HMMEventsRoutingKeys2["TORPEDO_MOVEMENT_RMBREAK_DEPART_ROUTING_KEY"] = "HMM.Events.Torpedo.Movement.RMBreakDepart";
|
|
80
80
|
HMMEventsRoutingKeys2["POT_CONSUMED_ROUTING_KEY"] = "HMM.Events.Pot.Consumed";
|
|
81
81
|
return HMMEventsRoutingKeys2;
|
|
82
82
|
})(HMMEventsRoutingKeys || {});
|
|
@@ -102,12 +102,13 @@ var hmmEventsMap = /* @__PURE__ */ new Map([
|
|
|
102
102
|
["TORPEDO_MOVEMENT_OOS_ARRIVE" /* TORPEDO_MOVEMENT_OOS_ARRIVE */, "HMM.Events.Torpedo.Movement.OutOfServiceArrive" /* TORPEDO_MOVEMENT_OOS_ARRIVE_ROUTING_KEY */],
|
|
103
103
|
["TORPEDO_MOVEMENT_OOS_DEPART" /* TORPEDO_MOVEMENT_OOS_DEPART */, "HMM.Events.Torpedo.Movement.OutOfServiceDepart" /* TORPEDO_MOVEMENT_OOS_DEPART_ROUTING_KEY */],
|
|
104
104
|
["TORPEDO_MOVEMENT_RMBREAK_ARRIVE" /* TORPEDO_MOVEMENT_RMBREAK_ARRIVE */, "HMM.Events.Torpedo.Movement.RMBreakArrive" /* TORPEDO_MOVEMENT_RMBREAK_ARRIVE_ROUTING_KEY */],
|
|
105
|
-
["
|
|
105
|
+
["TORPEDO_MOVEMENT_RMBREAK_DEPART" /* TORPEDO_MOVEMENT_RMBREAK_DEPART */, "HMM.Events.Torpedo.Movement.RMBreakDepart" /* TORPEDO_MOVEMENT_RMBREAK_DEPART_ROUTING_KEY */],
|
|
106
106
|
["POT_CONSUMED" /* POT_CONSUMED */, "HMM.Events.Pot.Consumed" /* POT_CONSUMED_ROUTING_KEY */]
|
|
107
107
|
]);
|
|
108
108
|
|
|
109
109
|
// src/hmm-processing-results.ts
|
|
110
110
|
var HMMProcessingResults = /* @__PURE__ */ ((HMMProcessingResults2) => {
|
|
111
|
+
HMMProcessingResults2["TORPEDO_EMPTY_BOS_EMPTY"] = "TORPEDO_EMPTY_BOS_EMPTY";
|
|
111
112
|
HMMProcessingResults2["TORPEDO_EMPTY_MANUAL"] = "TORPEDO_EMPTY_MANUAL";
|
|
112
113
|
HMMProcessingResults2["TORPEDO_FILLING_FINISHED"] = "TORPEDO_FILLING_FINISHED";
|
|
113
114
|
HMMProcessingResults2["TORPEDO_MOVEMENT_RECORDED"] = "TORPEDO_MOVEMENT_RECORDED";
|
|
@@ -117,6 +118,7 @@ var HMMProcessingResults = /* @__PURE__ */ ((HMMProcessingResults2) => {
|
|
|
117
118
|
|
|
118
119
|
// src/hmm-processing-routing-keys.ts
|
|
119
120
|
var HMMProcessingRoutingKeys = /* @__PURE__ */ ((HMMProcessingRoutingKeys2) => {
|
|
121
|
+
HMMProcessingRoutingKeys2["TORPEDO_EMPTY_BOS_EMPTY_ROUTING_KEY"] = "HMM.Processing.Results.Torpedo.Empty.BOS.Empty";
|
|
120
122
|
HMMProcessingRoutingKeys2["TORPEDO_EMPTY_MANUAL_ROUTING_KEY"] = "HMM.Processing.Results.Torpedo.Empty.Manual";
|
|
121
123
|
HMMProcessingRoutingKeys2["TORPEDO_FILLING_FINISHED_ROUTING_KEY"] = "HMM.Processing.Results.Torpedo.Filling.Finished";
|
|
122
124
|
HMMProcessingRoutingKeys2["TORPEDO_MOVEMENT_RECORDED_ROUTING_KEY"] = "HMM.Processing.Results.Torpedo.Movement.Recorded";
|
|
@@ -126,6 +128,7 @@ var HMMProcessingRoutingKeys = /* @__PURE__ */ ((HMMProcessingRoutingKeys2) => {
|
|
|
126
128
|
|
|
127
129
|
// src/hmm-processing-map.ts
|
|
128
130
|
var hmmProcessingMap = /* @__PURE__ */ new Map([
|
|
131
|
+
["TORPEDO_EMPTY_BOS_EMPTY" /* TORPEDO_EMPTY_BOS_EMPTY */, "HMM.Processing.Results.Torpedo.Empty.BOS.Empty" /* TORPEDO_EMPTY_BOS_EMPTY_ROUTING_KEY */],
|
|
129
132
|
["TORPEDO_EMPTY_MANUAL" /* TORPEDO_EMPTY_MANUAL */, "HMM.Processing.Results.Torpedo.Empty.Manual" /* TORPEDO_EMPTY_MANUAL_ROUTING_KEY */],
|
|
130
133
|
["TORPEDO_FILLING_FINISHED" /* TORPEDO_FILLING_FINISHED */, "HMM.Processing.Results.Torpedo.Filling.Finished" /* TORPEDO_FILLING_FINISHED_ROUTING_KEY */],
|
|
131
134
|
["TORPEDO_MOVEMENT_RECORDED" /* TORPEDO_MOVEMENT_RECORDED */, "HMM.Processing.Results.Torpedo.Movement.Recorded" /* TORPEDO_MOVEMENT_RECORDED_ROUTING_KEY */],
|
package/dist/index.mjs
CHANGED
|
@@ -19,7 +19,7 @@ var HMMEvents = /* @__PURE__ */ ((HMMEvents2) => {
|
|
|
19
19
|
HMMEvents2["TORPEDO_MOVEMENT_OOS_ARRIVE"] = "TORPEDO_MOVEMENT_OOS_ARRIVE";
|
|
20
20
|
HMMEvents2["TORPEDO_MOVEMENT_OOS_DEPART"] = "TORPEDO_MOVEMENT_OOS_DEPART";
|
|
21
21
|
HMMEvents2["TORPEDO_MOVEMENT_RMBREAK_ARRIVE"] = "TORPEDO_MOVEMENT_RMBREAK_ARRIVE";
|
|
22
|
-
HMMEvents2["
|
|
22
|
+
HMMEvents2["TORPEDO_MOVEMENT_RMBREAK_DEPART"] = "TORPEDO_MOVEMENT_RMBREAK_DEPART";
|
|
23
23
|
HMMEvents2["POT_CONSUMED"] = "POT_CONSUMED";
|
|
24
24
|
return HMMEvents2;
|
|
25
25
|
})(HMMEvents || {});
|
|
@@ -45,7 +45,7 @@ var HMMEventsRoutingKeys = /* @__PURE__ */ ((HMMEventsRoutingKeys2) => {
|
|
|
45
45
|
HMMEventsRoutingKeys2["TORPEDO_MOVEMENT_OOS_ARRIVE_ROUTING_KEY"] = "HMM.Events.Torpedo.Movement.OutOfServiceArrive";
|
|
46
46
|
HMMEventsRoutingKeys2["TORPEDO_MOVEMENT_OOS_DEPART_ROUTING_KEY"] = "HMM.Events.Torpedo.Movement.OutOfServiceDepart";
|
|
47
47
|
HMMEventsRoutingKeys2["TORPEDO_MOVEMENT_RMBREAK_ARRIVE_ROUTING_KEY"] = "HMM.Events.Torpedo.Movement.RMBreakArrive";
|
|
48
|
-
HMMEventsRoutingKeys2["
|
|
48
|
+
HMMEventsRoutingKeys2["TORPEDO_MOVEMENT_RMBREAK_DEPART_ROUTING_KEY"] = "HMM.Events.Torpedo.Movement.RMBreakDepart";
|
|
49
49
|
HMMEventsRoutingKeys2["POT_CONSUMED_ROUTING_KEY"] = "HMM.Events.Pot.Consumed";
|
|
50
50
|
return HMMEventsRoutingKeys2;
|
|
51
51
|
})(HMMEventsRoutingKeys || {});
|
|
@@ -71,12 +71,13 @@ var hmmEventsMap = /* @__PURE__ */ new Map([
|
|
|
71
71
|
["TORPEDO_MOVEMENT_OOS_ARRIVE" /* TORPEDO_MOVEMENT_OOS_ARRIVE */, "HMM.Events.Torpedo.Movement.OutOfServiceArrive" /* TORPEDO_MOVEMENT_OOS_ARRIVE_ROUTING_KEY */],
|
|
72
72
|
["TORPEDO_MOVEMENT_OOS_DEPART" /* TORPEDO_MOVEMENT_OOS_DEPART */, "HMM.Events.Torpedo.Movement.OutOfServiceDepart" /* TORPEDO_MOVEMENT_OOS_DEPART_ROUTING_KEY */],
|
|
73
73
|
["TORPEDO_MOVEMENT_RMBREAK_ARRIVE" /* TORPEDO_MOVEMENT_RMBREAK_ARRIVE */, "HMM.Events.Torpedo.Movement.RMBreakArrive" /* TORPEDO_MOVEMENT_RMBREAK_ARRIVE_ROUTING_KEY */],
|
|
74
|
-
["
|
|
74
|
+
["TORPEDO_MOVEMENT_RMBREAK_DEPART" /* TORPEDO_MOVEMENT_RMBREAK_DEPART */, "HMM.Events.Torpedo.Movement.RMBreakDepart" /* TORPEDO_MOVEMENT_RMBREAK_DEPART_ROUTING_KEY */],
|
|
75
75
|
["POT_CONSUMED" /* POT_CONSUMED */, "HMM.Events.Pot.Consumed" /* POT_CONSUMED_ROUTING_KEY */]
|
|
76
76
|
]);
|
|
77
77
|
|
|
78
78
|
// src/hmm-processing-results.ts
|
|
79
79
|
var HMMProcessingResults = /* @__PURE__ */ ((HMMProcessingResults2) => {
|
|
80
|
+
HMMProcessingResults2["TORPEDO_EMPTY_BOS_EMPTY"] = "TORPEDO_EMPTY_BOS_EMPTY";
|
|
80
81
|
HMMProcessingResults2["TORPEDO_EMPTY_MANUAL"] = "TORPEDO_EMPTY_MANUAL";
|
|
81
82
|
HMMProcessingResults2["TORPEDO_FILLING_FINISHED"] = "TORPEDO_FILLING_FINISHED";
|
|
82
83
|
HMMProcessingResults2["TORPEDO_MOVEMENT_RECORDED"] = "TORPEDO_MOVEMENT_RECORDED";
|
|
@@ -86,6 +87,7 @@ var HMMProcessingResults = /* @__PURE__ */ ((HMMProcessingResults2) => {
|
|
|
86
87
|
|
|
87
88
|
// src/hmm-processing-routing-keys.ts
|
|
88
89
|
var HMMProcessingRoutingKeys = /* @__PURE__ */ ((HMMProcessingRoutingKeys2) => {
|
|
90
|
+
HMMProcessingRoutingKeys2["TORPEDO_EMPTY_BOS_EMPTY_ROUTING_KEY"] = "HMM.Processing.Results.Torpedo.Empty.BOS.Empty";
|
|
89
91
|
HMMProcessingRoutingKeys2["TORPEDO_EMPTY_MANUAL_ROUTING_KEY"] = "HMM.Processing.Results.Torpedo.Empty.Manual";
|
|
90
92
|
HMMProcessingRoutingKeys2["TORPEDO_FILLING_FINISHED_ROUTING_KEY"] = "HMM.Processing.Results.Torpedo.Filling.Finished";
|
|
91
93
|
HMMProcessingRoutingKeys2["TORPEDO_MOVEMENT_RECORDED_ROUTING_KEY"] = "HMM.Processing.Results.Torpedo.Movement.Recorded";
|
|
@@ -95,6 +97,7 @@ var HMMProcessingRoutingKeys = /* @__PURE__ */ ((HMMProcessingRoutingKeys2) => {
|
|
|
95
97
|
|
|
96
98
|
// src/hmm-processing-map.ts
|
|
97
99
|
var hmmProcessingMap = /* @__PURE__ */ new Map([
|
|
100
|
+
["TORPEDO_EMPTY_BOS_EMPTY" /* TORPEDO_EMPTY_BOS_EMPTY */, "HMM.Processing.Results.Torpedo.Empty.BOS.Empty" /* TORPEDO_EMPTY_BOS_EMPTY_ROUTING_KEY */],
|
|
98
101
|
["TORPEDO_EMPTY_MANUAL" /* TORPEDO_EMPTY_MANUAL */, "HMM.Processing.Results.Torpedo.Empty.Manual" /* TORPEDO_EMPTY_MANUAL_ROUTING_KEY */],
|
|
99
102
|
["TORPEDO_FILLING_FINISHED" /* TORPEDO_FILLING_FINISHED */, "HMM.Processing.Results.Torpedo.Filling.Finished" /* TORPEDO_FILLING_FINISHED_ROUTING_KEY */],
|
|
100
103
|
["TORPEDO_MOVEMENT_RECORDED" /* TORPEDO_MOVEMENT_RECORDED */, "HMM.Processing.Results.Torpedo.Movement.Recorded" /* TORPEDO_MOVEMENT_RECORDED_ROUTING_KEY */],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bslau/hmm_message_lib",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|