@riddix/hamh 2.1.0-alpha.608 → 2.1.0-alpha.610
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/backend/cli.js
CHANGED
|
@@ -151488,6 +151488,9 @@ var WebApi = class extends Service {
|
|
|
151488
151488
|
realm: "Home Assistant Matter Hub"
|
|
151489
151489
|
});
|
|
151490
151490
|
return (req, res, next) => {
|
|
151491
|
+
if (req.path === "/api/health/live" || req.path === "/api/health/ready") {
|
|
151492
|
+
return next();
|
|
151493
|
+
}
|
|
151491
151494
|
if (envMiddleware) {
|
|
151492
151495
|
return envMiddleware(req, res, next);
|
|
151493
151496
|
}
|
|
@@ -170809,7 +170812,7 @@ var ClimateOnOffServer = OnOffServer2({
|
|
|
170809
170812
|
return { action: "climate.turn_on" };
|
|
170810
170813
|
},
|
|
170811
170814
|
turnOff: () => ({ action: "climate.turn_off" })
|
|
170812
|
-
}).with("
|
|
170815
|
+
}).with("DeadFrontBehavior");
|
|
170813
170816
|
|
|
170814
170817
|
// src/matter/endpoints/legacy/climate/behaviors/climate-thermostat-server.ts
|
|
170815
170818
|
init_dist();
|