@riddix/hamh 2.1.0-alpha.502 → 2.1.0-alpha.503

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.
@@ -169319,10 +169319,6 @@ function AutomationDevice(homeAssistantEntity) {
169319
169319
  return AutomationDeviceType.set({ homeAssistantEntity });
169320
169320
  }
169321
169321
 
169322
- // src/matter/endpoints/legacy/binary-sensor/index.ts
169323
- init_dist();
169324
- init_esm();
169325
-
169326
169322
  // ../../node_modules/.pnpm/@matter+main@0.16.10/node_modules/@matter/main/dist/esm/forwards/behaviors/boolean-state.js
169327
169323
  init_nodejs();
169328
169324
 
@@ -169392,6 +169388,10 @@ var ContactSensorWithBatteryType = ContactSensorDevice.with(
169392
169388
  })
169393
169389
  );
169394
169390
 
169391
+ // src/matter/endpoints/legacy/binary-sensor/index.ts
169392
+ init_dist();
169393
+ init_esm();
169394
+
169395
169395
  // src/matter/endpoints/legacy/binary-sensor/motion-sensor.ts
169396
169396
  init_home_assistant_entity_behavior();
169397
169397
 
@@ -175186,6 +175186,16 @@ function SensorDevice(homeAssistantEntity) {
175186
175186
  return void 0;
175187
175187
  }
175188
175188
 
175189
+ // src/matter/endpoints/legacy/switch/dimmable-plugin-unit.ts
175190
+ init_home_assistant_entity_behavior();
175191
+ var DimmablePlugInUnitType = DimmablePlugInUnitDevice.with(
175192
+ IdentifyServer2,
175193
+ BasicInformationServer2,
175194
+ HomeAssistantEntityBehavior,
175195
+ LightOnOffServer,
175196
+ LightLevelControlServer
175197
+ );
175198
+
175189
175199
  // src/matter/endpoints/legacy/switch/index.ts
175190
175200
  init_home_assistant_entity_behavior();
175191
175201
  var SwitchOnOffServer = OnOffServer2();
@@ -177631,6 +177641,9 @@ var matterDeviceTypeFactories = {
177631
177641
  }
177632
177642
  return SwitchDevice(ha);
177633
177643
  },
177644
+ dimmable_plugin_unit: (ha) => DimmablePlugInUnitType.set({
177645
+ homeAssistantEntity: { entity: ha.entity, customName: ha.customName }
177646
+ }),
177634
177647
  on_off_switch: SwitchDevice,
177635
177648
  door_lock: LockDevice,
177636
177649
  window_covering: CoverDevice,
@@ -177686,9 +177699,15 @@ var matterDeviceTypeFactories = {
177686
177699
  electrical_sensor: (ha) => ElectricalSensorType.set({
177687
177700
  homeAssistantEntity: { entity: ha.entity, customName: ha.customName }
177688
177701
  }),
177702
+ contact_sensor: (ha) => ContactSensorType.set({
177703
+ homeAssistantEntity: { entity: ha.entity, customName: ha.customName }
177704
+ }),
177689
177705
  motion_sensor: (ha) => MotionSensorType.set({
177690
177706
  homeAssistantEntity: { entity: ha.entity, customName: ha.customName }
177691
177707
  }),
177708
+ occupancy_sensor: (ha) => OccupancySensorType.set({
177709
+ homeAssistantEntity: { entity: ha.entity, customName: ha.customName }
177710
+ }),
177692
177711
  mode_select: SelectDevice,
177693
177712
  water_valve: ValveDevice,
177694
177713
  pump: PumpEndpoint,