@riddix/hamh 2.1.0-alpha.570 → 2.1.0-alpha.572

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.
@@ -181313,9 +181313,12 @@ var ServerModeVacuumEndpoint = class _ServerModeVacuumEndpoint extends EntityEnd
181313
181313
  }
181314
181314
  /**
181315
181315
  * Write directly to the RvcOperationalState cluster in a fresh
181316
- * transaction. Each call produces a unique errorStateLabel value
181316
+ * transaction. Each call produces a unique errorStateDetails value
181317
181317
  * so the struct is never deep-equal to its predecessor,
181318
181318
  * guaranteeing matter.js emits attrsChanged → subscription report.
181319
+ *
181320
+ * errorStateDetails (id 2) has conformance "O" (always optional)
181321
+ * unlike errorStateLabel (id 1) which requires errorStateId 128-191.
181319
181322
  */
181320
181323
  async pushKeepalive() {
181321
181324
  try {
@@ -181327,7 +181330,7 @@ var ServerModeVacuumEndpoint = class _ServerModeVacuumEndpoint extends EntityEnd
181327
181330
  const errorStateId = opState.state.operationalError.errorStateId;
181328
181331
  opState.state.operationalError = {
181329
181332
  errorStateId,
181330
- errorStateLabel: `k${counter}`
181333
+ errorStateDetails: `k${counter}`
181331
181334
  };
181332
181335
  });
181333
181336
  logger203.info(`Keepalive #${counter} committed for ${this.entityId}`);