queclink-parser 1.9.27 → 1.9.28
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/messages/es.json +2 -2
- package/src/utils.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### 1.9.28 (2026-03-17)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **gl533cg:** se agrega campo en alarma PNR y se modifican mensajes. ([dd10d272](https://github.com/jaayesta/queclink-parser/commit/dd10d2721d08d87e5275b7a617ac305a3a901ae6))
|
|
6
|
+
|
|
1
7
|
#### 1.9.27 (2026-03-16)
|
|
2
8
|
|
|
3
9
|
##### Bug Fixes
|
package/package.json
CHANGED
package/src/messages/es.json
CHANGED
|
@@ -365,8 +365,8 @@
|
|
|
365
365
|
"14": "Eliminar todos los reportes almacenados",
|
|
366
366
|
"17": "Reseteo de nivel de batería",
|
|
367
367
|
"18": "Borrar el emparejamiento SVR",
|
|
368
|
-
"92": "Ingreso a modo
|
|
369
|
-
"93": "Salida del modo
|
|
368
|
+
"92": "Ingreso a modo recupero",
|
|
369
|
+
"93": "Salida del modo recupero",
|
|
370
370
|
"94": "Restaurar configuración de fábrica",
|
|
371
371
|
"95": "Forzar configuración de fábrica"
|
|
372
372
|
}
|
package/src/utils.js
CHANGED
|
@@ -2270,6 +2270,7 @@ const getAlarm = (command, report, extra = false) => {
|
|
|
2270
2270
|
return {
|
|
2271
2271
|
type: 'Power_Reason',
|
|
2272
2272
|
status: command === 'GTPNR',
|
|
2273
|
+
dailyWakeup: report === '09' || false,
|
|
2273
2274
|
message: messages[command][report]
|
|
2274
2275
|
}
|
|
2275
2276
|
} else if (command === 'GTMPN' || command === 'GTEPN') {
|