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 +6 -0
- package/package.json +1 -1
- package/src/utils.js +1 -1
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
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 === '
|
|
2559
|
+
: command === 'GTALC' ? report.split(',')[6] : report.split(',')[7]
|
|
2560
2560
|
return {
|
|
2561
2561
|
type: command,
|
|
2562
2562
|
status: instruction,
|