zigbee-herdsman-converters 21.10.0 → 21.11.0
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 +22 -0
- package/converters/fromZigbee.d.ts +0 -5
- package/converters/fromZigbee.d.ts.map +1 -1
- package/converters/fromZigbee.js +0 -25
- package/converters/fromZigbee.js.map +1 -1
- package/converters/toZigbee.d.ts +343 -352
- package/converters/toZigbee.d.ts.map +1 -1
- package/converters/toZigbee.js +0 -20
- package/converters/toZigbee.js.map +1 -1
- package/devices/adeo.d.ts.map +1 -1
- package/devices/adeo.js +6 -6
- package/devices/adeo.js.map +1 -1
- package/devices/bosch.js +1 -1
- package/devices/bosch.js.map +1 -1
- package/devices/gmmts.d.ts.map +1 -1
- package/devices/gmmts.js.map +1 -1
- package/devices/index.d.ts.map +1 -1
- package/devices/index.js +2 -0
- package/devices/index.js.map +1 -1
- package/devices/nodon.d.ts.map +1 -1
- package/devices/nodon.js +11 -10
- package/devices/nodon.js.map +1 -1
- package/devices/nous.d.ts.map +1 -1
- package/devices/nous.js +1 -0
- package/devices/nous.js.map +1 -1
- package/devices/plugwise.js +2 -2
- package/devices/plugwise.js.map +1 -1
- package/devices/robb.d.ts.map +1 -1
- package/devices/robb.js +12 -0
- package/devices/robb.js.map +1 -1
- package/devices/salus_controls.d.ts.map +1 -1
- package/devices/salus_controls.js +50 -0
- package/devices/salus_controls.js.map +1 -1
- package/devices/sonoff.d.ts.map +1 -1
- package/devices/sonoff.js +5 -0
- package/devices/sonoff.js.map +1 -1
- package/devices/sunricher.d.ts.map +1 -1
- package/devices/sunricher.js +14 -0
- package/devices/sunricher.js.map +1 -1
- package/devices/tuya.d.ts.map +1 -1
- package/devices/tuya.js +96 -0
- package/devices/tuya.js.map +1 -1
- package/devices/xal.d.ts +4 -0
- package/devices/xal.d.ts.map +1 -0
- package/devices/xal.js +22 -0
- package/devices/xal.js.map +1 -0
- package/devices/yale.d.ts.map +1 -1
- package/devices/yale.js.map +1 -1
- package/devices/yandex.d.ts.map +1 -1
- package/devices/yandex.js.map +1 -1
- package/lib/constants.d.ts.map +1 -1
- package/lib/constants.js +4 -0
- package/lib/constants.js.map +1 -1
- package/lib/ewelink.d.ts +1 -1
- package/lib/generateDefinition.d.ts.map +1 -1
- package/lib/generateDefinition.js +2 -2
- package/lib/generateDefinition.js.map +1 -1
- package/lib/ledvance.d.ts +1 -1
- package/lib/legacy.d.ts +123 -123
- package/lib/legrand.d.ts +6 -6
- package/lib/lumi.d.ts +90 -90
- package/lib/nodon.d.ts +3 -0
- package/lib/nodon.d.ts.map +1 -0
- package/lib/nodon.js +130 -0
- package/lib/nodon.js.map +1 -0
- package/lib/philips.d.ts +10 -10
- package/lib/sunricher.d.ts +1 -1
- package/lib/tuya.d.ts +20 -20
- package/lib/types.d.ts +4 -4
- package/lib/types.d.ts.map +1 -1
- package/lib/zosung.d.ts +2 -2
- package/package.json +3 -3
package/lib/legrand.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare const readInitialBatteryState: OnEvent;
|
|
|
16
16
|
export declare const tzLegrand: {
|
|
17
17
|
auto_mode: {
|
|
18
18
|
key: string[];
|
|
19
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
19
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
20
20
|
state: {
|
|
21
21
|
auto_mode: unknown;
|
|
22
22
|
};
|
|
@@ -24,22 +24,22 @@ export declare const tzLegrand: {
|
|
|
24
24
|
};
|
|
25
25
|
calibration_mode: (isNLLVSwitch: boolean) => {
|
|
26
26
|
key: string[];
|
|
27
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
28
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
27
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
28
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
29
29
|
};
|
|
30
30
|
led_mode: {
|
|
31
31
|
key: string[];
|
|
32
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
32
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
33
33
|
state: {
|
|
34
34
|
[x: string]: unknown;
|
|
35
35
|
};
|
|
36
36
|
}>;
|
|
37
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
37
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
38
38
|
};
|
|
39
39
|
identify: {
|
|
40
40
|
key: string[];
|
|
41
41
|
options: exposes.Composite[];
|
|
42
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
42
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
43
43
|
};
|
|
44
44
|
};
|
|
45
45
|
export declare const fzLegrand: {
|
package/lib/lumi.d.ts
CHANGED
|
@@ -196,7 +196,7 @@ export declare const lumiModernExtend: {
|
|
|
196
196
|
exposes: exposes.Enum[];
|
|
197
197
|
toZigbee: {
|
|
198
198
|
key: string[];
|
|
199
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
199
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
200
200
|
}[];
|
|
201
201
|
};
|
|
202
202
|
fp1eRestartDevice: () => {
|
|
@@ -204,7 +204,7 @@ export declare const lumiModernExtend: {
|
|
|
204
204
|
exposes: exposes.Enum[];
|
|
205
205
|
toZigbee: {
|
|
206
206
|
key: string[];
|
|
207
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
207
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
208
208
|
}[];
|
|
209
209
|
};
|
|
210
210
|
};
|
|
@@ -549,33 +549,33 @@ export declare const fromZigbee: {
|
|
|
549
549
|
export declare const toZigbee: {
|
|
550
550
|
lumi_power: {
|
|
551
551
|
key: string[];
|
|
552
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
552
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
553
553
|
};
|
|
554
554
|
lumi_led_disabled_night: {
|
|
555
555
|
key: string[];
|
|
556
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
556
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
557
557
|
state: {
|
|
558
558
|
led_disabled_night: unknown;
|
|
559
559
|
};
|
|
560
560
|
}>;
|
|
561
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
561
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
562
562
|
};
|
|
563
563
|
lumi_flip_indicator_light: {
|
|
564
564
|
key: string[];
|
|
565
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
565
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
566
566
|
state: {
|
|
567
567
|
flip_indicator_light: unknown;
|
|
568
568
|
};
|
|
569
569
|
}>;
|
|
570
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
570
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
571
571
|
};
|
|
572
572
|
lumi_power_outage_count: {
|
|
573
573
|
key: string[];
|
|
574
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
574
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
575
575
|
};
|
|
576
576
|
lumi_feeder: {
|
|
577
577
|
key: string[];
|
|
578
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
578
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
579
579
|
state: {
|
|
580
580
|
[x: string]: unknown;
|
|
581
581
|
};
|
|
@@ -583,101 +583,101 @@ export declare const toZigbee: {
|
|
|
583
583
|
};
|
|
584
584
|
lumi_detection_distance: {
|
|
585
585
|
key: string[];
|
|
586
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
586
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
587
587
|
state: {
|
|
588
588
|
detection_distance: unknown;
|
|
589
589
|
};
|
|
590
590
|
}>;
|
|
591
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
591
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
592
592
|
};
|
|
593
593
|
lumi_trv: {
|
|
594
594
|
key: string[];
|
|
595
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
596
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
595
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
596
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
597
597
|
};
|
|
598
598
|
lumi_presence_region_upsert: {
|
|
599
599
|
key: string[];
|
|
600
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
600
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
601
601
|
};
|
|
602
602
|
lumi_presence_region_delete: {
|
|
603
603
|
key: string[];
|
|
604
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
604
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
605
605
|
};
|
|
606
606
|
lumi_cube_operation_mode: {
|
|
607
607
|
key: string[];
|
|
608
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
608
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
609
609
|
};
|
|
610
610
|
lumi_switch_operation_mode_basic: {
|
|
611
611
|
key: string[];
|
|
612
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
612
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
613
613
|
state: {
|
|
614
614
|
operation_mode: any;
|
|
615
615
|
};
|
|
616
616
|
}>;
|
|
617
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
617
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
618
618
|
};
|
|
619
619
|
lumi_switch_operation_mode_opple: {
|
|
620
620
|
key: string[];
|
|
621
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
622
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
621
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
622
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
623
623
|
};
|
|
624
624
|
lumi_detection_interval: {
|
|
625
625
|
key: string[];
|
|
626
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
626
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
627
627
|
state: {
|
|
628
628
|
detection_interval: number;
|
|
629
629
|
};
|
|
630
630
|
}>;
|
|
631
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
631
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
632
632
|
};
|
|
633
633
|
lumi_overload_protection: {
|
|
634
634
|
key: string[];
|
|
635
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
635
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
636
636
|
state: {
|
|
637
637
|
overload_protection: number;
|
|
638
638
|
};
|
|
639
639
|
}>;
|
|
640
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
640
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
641
641
|
};
|
|
642
642
|
lumi_switch_mode_switch: {
|
|
643
643
|
key: string[];
|
|
644
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
644
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
645
645
|
state: {
|
|
646
646
|
mode_switch: unknown;
|
|
647
647
|
};
|
|
648
648
|
}>;
|
|
649
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
649
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
650
650
|
};
|
|
651
651
|
lumi_button_switch_mode: {
|
|
652
652
|
key: string[];
|
|
653
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
653
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
654
654
|
state: {
|
|
655
655
|
button_switch_mode: unknown;
|
|
656
656
|
};
|
|
657
657
|
}>;
|
|
658
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
658
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
659
659
|
};
|
|
660
660
|
lumi_socket_button_lock: {
|
|
661
661
|
key: string[];
|
|
662
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
662
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
663
663
|
state: {
|
|
664
664
|
button_lock: unknown;
|
|
665
665
|
};
|
|
666
666
|
}>;
|
|
667
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
667
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
668
668
|
};
|
|
669
669
|
lumi_dimmer_mode: {
|
|
670
670
|
key: string[];
|
|
671
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
671
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
672
672
|
state: {
|
|
673
673
|
dimmer_mode: unknown;
|
|
674
674
|
};
|
|
675
675
|
}>;
|
|
676
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
676
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
677
677
|
};
|
|
678
678
|
lumi_switch_do_not_disturb: {
|
|
679
679
|
key: string[];
|
|
680
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
680
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
681
681
|
state: {
|
|
682
682
|
do_not_disturb: unknown;
|
|
683
683
|
};
|
|
@@ -685,25 +685,25 @@ export declare const toZigbee: {
|
|
|
685
685
|
};
|
|
686
686
|
lumi_switch_type: {
|
|
687
687
|
key: string[];
|
|
688
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
688
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
689
689
|
state: {
|
|
690
690
|
switch_type: unknown;
|
|
691
691
|
};
|
|
692
692
|
}>;
|
|
693
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
693
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
694
694
|
};
|
|
695
695
|
lumi_switch_power_outage_memory: {
|
|
696
696
|
key: string[];
|
|
697
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
697
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
698
698
|
state: {
|
|
699
699
|
power_outage_memory: unknown;
|
|
700
700
|
};
|
|
701
701
|
}>;
|
|
702
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
702
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
703
703
|
};
|
|
704
704
|
lumi_light_power_outage_memory: {
|
|
705
705
|
key: string[];
|
|
706
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
706
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
707
707
|
state: {
|
|
708
708
|
power_outage_memory: unknown;
|
|
709
709
|
};
|
|
@@ -711,87 +711,87 @@ export declare const toZigbee: {
|
|
|
711
711
|
};
|
|
712
712
|
lumi_auto_off: {
|
|
713
713
|
key: string[];
|
|
714
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
714
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
715
715
|
state: {
|
|
716
716
|
auto_off: unknown;
|
|
717
717
|
};
|
|
718
718
|
}>;
|
|
719
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
719
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
720
720
|
};
|
|
721
721
|
lumi_detection_period: {
|
|
722
722
|
key: string[];
|
|
723
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
723
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
724
724
|
state: {
|
|
725
725
|
detection_period: number;
|
|
726
726
|
};
|
|
727
727
|
}>;
|
|
728
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
728
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
729
729
|
};
|
|
730
730
|
lumi_motion_sensitivity: {
|
|
731
731
|
key: string[];
|
|
732
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
732
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
733
733
|
state: {
|
|
734
734
|
motion_sensitivity: unknown;
|
|
735
735
|
};
|
|
736
736
|
}>;
|
|
737
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
737
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
738
738
|
};
|
|
739
739
|
lumi_presence: {
|
|
740
740
|
key: string[];
|
|
741
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
741
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
742
742
|
};
|
|
743
743
|
lumi_monitoring_mode: {
|
|
744
744
|
key: string[];
|
|
745
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
745
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
746
746
|
state: {
|
|
747
747
|
monitoring_mode: unknown;
|
|
748
748
|
};
|
|
749
749
|
}>;
|
|
750
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
750
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
751
751
|
};
|
|
752
752
|
lumi_approach_distance: {
|
|
753
753
|
key: string[];
|
|
754
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
754
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
755
755
|
state: {
|
|
756
756
|
approach_distance: unknown;
|
|
757
757
|
};
|
|
758
758
|
}>;
|
|
759
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
759
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
760
760
|
};
|
|
761
761
|
lumi_reset_nopresence_status: {
|
|
762
762
|
key: string[];
|
|
763
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
763
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
764
764
|
};
|
|
765
765
|
lumi_switch_click_mode: {
|
|
766
766
|
key: string[];
|
|
767
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
767
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
768
768
|
state: {
|
|
769
769
|
click_mode: unknown;
|
|
770
770
|
};
|
|
771
771
|
}>;
|
|
772
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
772
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
773
773
|
};
|
|
774
774
|
lumi_switch_lock_relay_opple: {
|
|
775
775
|
key: string[];
|
|
776
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
776
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
777
777
|
state: {
|
|
778
778
|
lock_relay: unknown;
|
|
779
779
|
};
|
|
780
780
|
}>;
|
|
781
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
781
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
782
782
|
};
|
|
783
783
|
lumi_operation_mode_opple: {
|
|
784
784
|
key: string[];
|
|
785
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
785
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
786
786
|
state: {
|
|
787
787
|
operation_mode: string;
|
|
788
788
|
};
|
|
789
789
|
}>;
|
|
790
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
790
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
791
791
|
};
|
|
792
792
|
lumi_vibration_sensitivity: {
|
|
793
793
|
key: string[];
|
|
794
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
794
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
795
795
|
state: {
|
|
796
796
|
sensitivity: unknown;
|
|
797
797
|
};
|
|
@@ -799,7 +799,7 @@ export declare const toZigbee: {
|
|
|
799
799
|
};
|
|
800
800
|
lumi_interlock: {
|
|
801
801
|
key: string[];
|
|
802
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
802
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
803
803
|
state: {
|
|
804
804
|
interlock: unknown;
|
|
805
805
|
};
|
|
@@ -807,7 +807,7 @@ export declare const toZigbee: {
|
|
|
807
807
|
};
|
|
808
808
|
lumi_curtain_options: {
|
|
809
809
|
key: string[];
|
|
810
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
810
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
811
811
|
state: {
|
|
812
812
|
options: {
|
|
813
813
|
reverse_direction: boolean;
|
|
@@ -816,42 +816,42 @@ export declare const toZigbee: {
|
|
|
816
816
|
};
|
|
817
817
|
};
|
|
818
818
|
}>;
|
|
819
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
819
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
820
820
|
};
|
|
821
821
|
lumi_curtain_position_state: {
|
|
822
822
|
key: string[];
|
|
823
823
|
options: exposes.Binary[];
|
|
824
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
824
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
825
825
|
state: {
|
|
826
826
|
position: unknown;
|
|
827
827
|
};
|
|
828
828
|
}>;
|
|
829
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
829
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
830
830
|
};
|
|
831
831
|
lumi_curtain_battery_voltage: {
|
|
832
832
|
key: string[];
|
|
833
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
833
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
834
834
|
};
|
|
835
835
|
lumi_curtain_charging_status: {
|
|
836
836
|
key: string[];
|
|
837
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
837
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
838
838
|
};
|
|
839
839
|
lumi_curtain_battery: {
|
|
840
840
|
key: string[];
|
|
841
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
841
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
842
842
|
};
|
|
843
843
|
lumi_trigger_indicator: {
|
|
844
844
|
key: string[];
|
|
845
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
845
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
846
846
|
state: {
|
|
847
847
|
trigger_indicator: unknown;
|
|
848
848
|
};
|
|
849
849
|
}>;
|
|
850
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
850
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
851
851
|
};
|
|
852
852
|
lumi_curtain_hooks_lock: {
|
|
853
853
|
key: string[];
|
|
854
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
854
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
855
855
|
state: {
|
|
856
856
|
[x: string]: unknown;
|
|
857
857
|
};
|
|
@@ -859,76 +859,76 @@ export declare const toZigbee: {
|
|
|
859
859
|
};
|
|
860
860
|
lumi_curtain_hooks_state: {
|
|
861
861
|
key: string[];
|
|
862
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
862
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
863
863
|
};
|
|
864
864
|
lumi_curtain_hand_open: {
|
|
865
865
|
key: string[];
|
|
866
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
867
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
866
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
867
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
868
868
|
};
|
|
869
869
|
lumi_curtain_reverse: {
|
|
870
870
|
key: string[];
|
|
871
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
872
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
871
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
872
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
873
873
|
};
|
|
874
874
|
lumi_curtain_limits_calibration: {
|
|
875
875
|
key: string[];
|
|
876
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
876
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
877
877
|
};
|
|
878
878
|
lumi_curtain_limits_calibration_ZNCLDJ14LM: {
|
|
879
879
|
key: string[];
|
|
880
880
|
options: exposes.Enum[];
|
|
881
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
881
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
882
882
|
};
|
|
883
883
|
lumi_curtain_automatic_calibration_ZNCLDJ01LM: {
|
|
884
884
|
key: string[];
|
|
885
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
885
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
886
886
|
};
|
|
887
887
|
lumi_buzzer: {
|
|
888
888
|
key: string[];
|
|
889
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
889
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
890
890
|
};
|
|
891
891
|
lumi_buzzer_manual: {
|
|
892
892
|
key: string[];
|
|
893
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
893
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
894
894
|
};
|
|
895
895
|
lumi_heartbeat_indicator: {
|
|
896
896
|
key: string[];
|
|
897
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
897
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
898
898
|
state: {
|
|
899
899
|
heartbeat_indicator: unknown;
|
|
900
900
|
};
|
|
901
901
|
}>;
|
|
902
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
902
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
903
903
|
};
|
|
904
904
|
lumi_selftest: {
|
|
905
905
|
key: string[];
|
|
906
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
906
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<void>;
|
|
907
907
|
};
|
|
908
908
|
lumi_linkage_alarm: {
|
|
909
909
|
key: string[];
|
|
910
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
910
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
911
911
|
state: {
|
|
912
912
|
linkage_alarm: unknown;
|
|
913
913
|
};
|
|
914
914
|
}>;
|
|
915
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
915
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
916
916
|
};
|
|
917
917
|
lumi_state: {
|
|
918
918
|
key: string[];
|
|
919
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
919
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
920
920
|
};
|
|
921
921
|
lumi_alarm: {
|
|
922
922
|
key: string[];
|
|
923
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
923
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
924
924
|
};
|
|
925
925
|
lumi_density: {
|
|
926
926
|
key: string[];
|
|
927
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
927
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
928
928
|
};
|
|
929
929
|
lumi_sensitivity: {
|
|
930
930
|
key: string[];
|
|
931
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
931
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
932
932
|
state: {
|
|
933
933
|
sensitivity: unknown;
|
|
934
934
|
};
|
|
@@ -936,16 +936,16 @@ export declare const toZigbee: {
|
|
|
936
936
|
};
|
|
937
937
|
lumi_gas_sensitivity: {
|
|
938
938
|
key: string[];
|
|
939
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
939
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
940
940
|
state: {
|
|
941
941
|
gas_sensitivity: unknown;
|
|
942
942
|
};
|
|
943
943
|
}>;
|
|
944
|
-
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
944
|
+
convertGet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, meta: Tz.Meta) => Promise<void>;
|
|
945
945
|
};
|
|
946
946
|
lumi_smart_panel_ZNCJMB14LM: {
|
|
947
947
|
key: string[];
|
|
948
|
-
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").
|
|
948
|
+
convertSet: (entity: import("zigbee-herdsman/dist/controller/model").Group | import("zigbee-herdsman/dist/controller/model").Endpoint, key: string, value: unknown, meta: Tz.Meta) => Promise<{
|
|
949
949
|
state: KeyValue;
|
|
950
950
|
}>;
|
|
951
951
|
};
|
package/lib/nodon.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nodon.d.ts","sourceRoot":"","sources":["../../src/lib/nodon.ts"],"names":[],"mappings":"AAMA,OAAO,EAAc,YAAY,EAAC,MAAM,SAAS,CAAC;AAsFlD,eAAO,MAAM,cAAc,uBAAwB,OAAO,KAAG,YAAY,EAA6D,CAAC"}
|