queclink-parser 1.4.2 → 1.4.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ #### 1.4.3 (2023-03-04)
2
+
3
+ ##### New Features
4
+
5
+ * **overSpeed:** overspeedtype added to over speed alarm ([fc3554d4](https://github.com/jaayesta/queclink-parser/commit/fc3554d4b48b7da43b62931272fa048b68d1f736))
6
+
1
7
  #### 1.4.2 (2023-01-16)
2
8
 
3
9
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "queclink-parser",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Parse raw data from Queclink devices",
5
5
  "main": "src",
6
6
  "scripts": {
package/src/utils.js CHANGED
@@ -255,6 +255,7 @@ const getAlarm = (command, report, extra = false) => {
255
255
  return {
256
256
  type: 'Over_Speed',
257
257
  status: reportType === 0,
258
+ overSpeedType: 'device',
258
259
  message: messages[command][reportType]
259
260
  }
260
261
  } else if (command === 'GTIGL') {