@@ -18,6 +18,7 @@ import blinds from './api/blinds'
18
18
import airPurifiers from './api/airPurifiers'
19
19
import repeaters from './api/repeaters'
20
20
import motionSensors from './api/motionSensors'
21
+ import lightSensors from './api/lightSensors'
21
22
import environmentSensors from './api/environmentSensors'
22
23
import openCloseSensors from './api/openCloseSensors'
23
24
import deviceSets from './api/deviceSets'
@@ -37,6 +38,7 @@ export type { EnvironmentSensor } from './types/device/EnvironmentSensor'
37
38
export type { Home } from './types/Home'
38
39
export type { Hub } from './types/device/Hub'
39
40
export type { Light } from './types/device/Light'
41
+ export type { LightSensor } from './types/device/LightSensor'
40
42
export type { MotionSensor } from './types/device/MotionSensor'
41
43
export type { Music } from './types/Music'
42
44
export type { OpenCloseSensor } from './types/device/OpenCloseSensor'
@@ -182,6 +184,7 @@ export async function createDirigeraClient({
182
184
airPurifiers : airPurifiers ( gotInstance ) ,
183
185
repeaters : repeaters ( gotInstance ) ,
184
186
motionSensors : motionSensors ( gotInstance ) ,
187
+ lightSensors : lightSensors ( gotInstance ) ,
185
188
environmentSensors : environmentSensors ( gotInstance ) ,
186
189
openCloseSensors : openCloseSensors ( gotInstance ) ,
187
190
deviceSets : deviceSets ( gotInstance ) ,
0 commit comments