queclink-parser 1.9.28 → 1.9.29

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.9.29 (2026-03-20)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **config:** se corrige status en consulta de configuración. ([75e29aa1](https://github.com/jaayesta/queclink-parser/commit/75e29aa185dd6002b0d2fd5c6fb3e1dadbbe6dd8))
6
+
1
7
  #### 1.9.28 (2026-03-17)
2
8
 
3
9
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "queclink-parser",
3
- "version": "1.9.28",
3
+ "version": "1.9.29",
4
4
  "description": "Parse raw data from Queclink devices",
5
5
  "main": "src",
6
6
  "scripts": {
package/src/utils.js CHANGED
@@ -2556,7 +2556,7 @@ const getAlarm = (command, report, extra = false) => {
2556
2556
  const instruction =
2557
2557
  command === 'GTALS'
2558
2558
  ? report.split(',')[4]
2559
- : command === 'GTALM' ? report.split(',')[6] : report.split(',')[7]
2559
+ : command === 'GTALC' ? report.split(',')[6] : report.split(',')[7]
2560
2560
  return {
2561
2561
  type: command,
2562
2562
  status: instruction,