zigbee-herdsman 6.1.0 → 6.1.2
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 +17 -0
- package/dist/adapter/deconz/adapter/deconzAdapter.js +1 -1
- package/dist/adapter/deconz/adapter/deconzAdapter.js.map +1 -1
- package/dist/adapter/deconz/driver/driver.d.ts +1 -1
- package/dist/adapter/deconz/driver/driver.d.ts.map +1 -1
- package/dist/adapter/deconz/driver/driver.js.map +1 -1
- package/dist/adapter/ezsp/adapter/ezspAdapter.js +1 -1
- package/dist/adapter/ezsp/adapter/ezspAdapter.js.map +1 -1
- package/dist/adapter/z-stack/adapter/zStackAdapter.d.ts +9 -0
- package/dist/adapter/z-stack/adapter/zStackAdapter.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/zStackAdapter.js +110 -14
- package/dist/adapter/z-stack/adapter/zStackAdapter.js.map +1 -1
- package/dist/adapter/zboss/adapter/zbossAdapter.js +1 -1
- package/dist/adapter/zboss/adapter/zbossAdapter.js.map +1 -1
- package/dist/adapter/zigate/adapter/zigateAdapter.js +1 -1
- package/dist/adapter/zigate/adapter/zigateAdapter.js.map +1 -1
- package/dist/controller/helpers/zclTransactionSequenceNumber.d.ts +1 -1
- package/dist/controller/helpers/zclTransactionSequenceNumber.d.ts.map +1 -1
- package/dist/controller/helpers/zclTransactionSequenceNumber.js +4 -7
- package/dist/controller/helpers/zclTransactionSequenceNumber.js.map +1 -1
- package/dist/controller/model/endpoint.js +1 -1
- package/dist/controller/model/group.js +1 -1
- package/dist/zspec/zcl/buffaloZcl.d.ts.map +1 -1
- package/dist/zspec/zcl/buffaloZcl.js +0 -8
- package/dist/zspec/zcl/buffaloZcl.js.map +1 -1
- package/dist/zspec/zcl/definition/cluster.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/cluster.js +195 -44
- package/dist/zspec/zcl/definition/cluster.js.map +1 -1
- package/dist/zspec/zcl/definition/clusters-types.d.ts +118 -69
- package/dist/zspec/zcl/definition/clusters-types.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/enums.d.ts +19 -0
- package/dist/zspec/zcl/definition/enums.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/enums.js +22 -1
- package/dist/zspec/zcl/definition/enums.js.map +1 -1
- package/package.json +4 -4
|
@@ -736,7 +736,7 @@ export interface TClusters {
|
|
|
736
736
|
reportingPeriod: number;
|
|
737
737
|
/** ID: 22 | Type: UINT16 */
|
|
738
738
|
calcPeriod: number;
|
|
739
|
-
/** ID: 23 | Type:
|
|
739
|
+
/** ID: 23 | Type: UINT8 */
|
|
740
740
|
numRSSIMeasurements: number;
|
|
741
741
|
};
|
|
742
742
|
commands: {
|
|
@@ -751,115 +751,164 @@ export interface TClusters {
|
|
|
751
751
|
/** Type: INT16 */
|
|
752
752
|
power: number;
|
|
753
753
|
/** Type: UINT16 */
|
|
754
|
-
|
|
754
|
+
pathLossExponent: number;
|
|
755
755
|
};
|
|
756
756
|
/** ID: 1 */
|
|
757
|
-
|
|
757
|
+
setDeviceConfig: {
|
|
758
758
|
/** Type: INT16 */
|
|
759
759
|
power: number;
|
|
760
760
|
/** Type: UINT16 */
|
|
761
|
-
|
|
761
|
+
pathLossExponent: number;
|
|
762
762
|
/** Type: UINT16 */
|
|
763
|
-
|
|
763
|
+
calcPeriod: number;
|
|
764
764
|
/** Type: UINT8 */
|
|
765
|
-
|
|
765
|
+
numRssiMeasurements: number;
|
|
766
766
|
/** Type: UINT16 */
|
|
767
|
-
|
|
767
|
+
reportingPeriod: number;
|
|
768
768
|
};
|
|
769
769
|
/** ID: 2 */
|
|
770
|
-
|
|
770
|
+
getDeviceConfig: {
|
|
771
771
|
/** Type: IEEE_ADDR */
|
|
772
|
-
|
|
772
|
+
targetAddr: string;
|
|
773
773
|
};
|
|
774
774
|
/** ID: 3 */
|
|
775
|
-
|
|
775
|
+
getLocationData: {
|
|
776
|
+
/** Type: BITMAP8 */
|
|
777
|
+
info: number;
|
|
776
778
|
/** Type: UINT8 */
|
|
777
|
-
|
|
779
|
+
numResponses: number;
|
|
780
|
+
/** Type: IEEE_ADDR, Conditions: [{bitMaskSet param=info mask=4 reversed=true}] */
|
|
781
|
+
targetAddr?: string;
|
|
782
|
+
};
|
|
783
|
+
/** ID: 4 */
|
|
784
|
+
rssiResponse: {
|
|
785
|
+
/** Type: IEEE_ADDR */
|
|
786
|
+
replyingDevice: string;
|
|
787
|
+
/** Type: INT16 */
|
|
788
|
+
x: number;
|
|
789
|
+
/** Type: INT16 */
|
|
790
|
+
y: number;
|
|
791
|
+
/** Type: INT16 */
|
|
792
|
+
z: number;
|
|
793
|
+
/** Type: INT8 */
|
|
794
|
+
rssi: number;
|
|
778
795
|
/** Type: UINT8 */
|
|
779
|
-
|
|
796
|
+
numRssiMeasurements: number;
|
|
797
|
+
};
|
|
798
|
+
/** ID: 5 */
|
|
799
|
+
sendPings: {
|
|
780
800
|
/** Type: IEEE_ADDR */
|
|
781
|
-
|
|
801
|
+
targetAddr: string;
|
|
802
|
+
/** Type: UINT8 */
|
|
803
|
+
numRssiMeasurements: number;
|
|
804
|
+
/** Type: UINT16 */
|
|
805
|
+
calcPeriod: number;
|
|
806
|
+
};
|
|
807
|
+
/** ID: 6 */
|
|
808
|
+
anchorNodeAnnounce: {
|
|
809
|
+
/** Type: IEEE_ADDR */
|
|
810
|
+
anchorNodeAddr: string;
|
|
811
|
+
/** Type: INT16 */
|
|
812
|
+
x: number;
|
|
813
|
+
/** Type: INT16 */
|
|
814
|
+
y: number;
|
|
815
|
+
/** Type: INT16 */
|
|
816
|
+
z: number;
|
|
782
817
|
};
|
|
783
818
|
};
|
|
784
819
|
commandResponses: {
|
|
785
820
|
/** ID: 0 */
|
|
786
|
-
|
|
787
|
-
/** Type:
|
|
821
|
+
deviceConfigResponse: {
|
|
822
|
+
/** Type: ENUM8 */
|
|
788
823
|
status: number;
|
|
789
|
-
/** Type: INT16 */
|
|
790
|
-
power
|
|
791
|
-
/** Type: UINT16 */
|
|
792
|
-
|
|
793
|
-
/** Type: UINT16 */
|
|
794
|
-
|
|
795
|
-
/** Type: UINT8 */
|
|
796
|
-
|
|
797
|
-
/** Type: UINT16 */
|
|
798
|
-
|
|
824
|
+
/** Type: INT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
825
|
+
power?: number;
|
|
826
|
+
/** Type: UINT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
827
|
+
pathLossExponent?: number;
|
|
828
|
+
/** Type: UINT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
829
|
+
calcPeriod?: number;
|
|
830
|
+
/** Type: UINT8, Conditions: [{fieldEquals field=status value=0}] */
|
|
831
|
+
numRssiMeasurements?: number;
|
|
832
|
+
/** Type: UINT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
833
|
+
reportingPeriod?: number;
|
|
799
834
|
};
|
|
800
835
|
/** ID: 1 */
|
|
801
|
-
|
|
802
|
-
/** Type:
|
|
836
|
+
locationDataResponse: {
|
|
837
|
+
/** Type: ENUM8 */
|
|
803
838
|
status: number;
|
|
804
|
-
/** Type:
|
|
805
|
-
|
|
806
|
-
/** Type: INT16 */
|
|
807
|
-
coord1
|
|
808
|
-
/** Type: INT16 */
|
|
809
|
-
coord2
|
|
810
|
-
/** Type: INT16 */
|
|
811
|
-
coord3
|
|
812
|
-
/** Type: INT16 */
|
|
813
|
-
power
|
|
814
|
-
/** Type: UINT16 */
|
|
815
|
-
|
|
816
|
-
/** Type:
|
|
817
|
-
|
|
818
|
-
/** Type: UINT8 */
|
|
819
|
-
|
|
820
|
-
/** Type: UINT16 */
|
|
821
|
-
|
|
839
|
+
/** Type: DATA8, Conditions: [{fieldEquals field=status value=0}] */
|
|
840
|
+
type?: number;
|
|
841
|
+
/** Type: INT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
842
|
+
coord1?: number;
|
|
843
|
+
/** Type: INT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
844
|
+
coord2?: number;
|
|
845
|
+
/** Type: INT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
846
|
+
coord3?: number;
|
|
847
|
+
/** Type: INT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
848
|
+
power?: number;
|
|
849
|
+
/** Type: UINT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
850
|
+
pathLossExponent?: number;
|
|
851
|
+
/** Type: ENUM8, Conditions: [{fieldEquals field=status value=0}] */
|
|
852
|
+
method?: number;
|
|
853
|
+
/** Type: UINT8, Conditions: [{fieldEquals field=status value=0}] */
|
|
854
|
+
qualityMeasure?: number;
|
|
855
|
+
/** Type: UINT16, Conditions: [{fieldEquals field=status value=0}] */
|
|
856
|
+
age?: number;
|
|
822
857
|
};
|
|
823
858
|
/** ID: 2 */
|
|
824
|
-
|
|
825
|
-
/** Type:
|
|
826
|
-
|
|
859
|
+
locationDataNotification: {
|
|
860
|
+
/** Type: DATA8 */
|
|
861
|
+
type: number;
|
|
827
862
|
/** Type: INT16 */
|
|
828
863
|
coord1: number;
|
|
829
864
|
/** Type: INT16 */
|
|
830
865
|
coord2: number;
|
|
831
|
-
/** Type: INT16 */
|
|
832
|
-
coord3
|
|
866
|
+
/** Type: INT16, Conditions: [{bitMaskSet param=type mask=2 reversed=true}] */
|
|
867
|
+
coord3?: number;
|
|
833
868
|
/** Type: INT16 */
|
|
834
869
|
power: number;
|
|
835
870
|
/** Type: UINT16 */
|
|
836
|
-
|
|
837
|
-
/** Type:
|
|
838
|
-
|
|
839
|
-
/** Type: UINT8 */
|
|
840
|
-
|
|
841
|
-
/** Type: UINT16 */
|
|
842
|
-
|
|
871
|
+
pathLossExponent: number;
|
|
872
|
+
/** Type: ENUM8, Conditions: [{bitMaskSet param=type mask=1 reversed=true}] */
|
|
873
|
+
method?: number;
|
|
874
|
+
/** Type: UINT8, Conditions: [{bitMaskSet param=type mask=1 reversed=true}] */
|
|
875
|
+
qualityMeasure?: number;
|
|
876
|
+
/** Type: UINT16, Conditions: [{bitMaskSet param=type mask=1 reversed=true}] */
|
|
877
|
+
age?: number;
|
|
843
878
|
};
|
|
844
879
|
/** ID: 3 */
|
|
845
|
-
|
|
846
|
-
/** Type:
|
|
847
|
-
|
|
880
|
+
compactLocationDataNotification: {
|
|
881
|
+
/** Type: DATA8 */
|
|
882
|
+
type: number;
|
|
848
883
|
/** Type: INT16 */
|
|
849
884
|
coord1: number;
|
|
850
885
|
/** Type: INT16 */
|
|
851
886
|
coord2: number;
|
|
852
|
-
/** Type: INT16 */
|
|
853
|
-
coord3
|
|
854
|
-
/** Type: UINT8 */
|
|
855
|
-
|
|
856
|
-
/** Type: UINT16 */
|
|
857
|
-
|
|
887
|
+
/** Type: INT16, Conditions: [{bitMaskSet param=type mask=2 reversed=true}] */
|
|
888
|
+
coord3?: number;
|
|
889
|
+
/** Type: UINT8, Conditions: [{bitMaskSet param=type mask=1 reversed=true}] */
|
|
890
|
+
qualityMeasure?: number;
|
|
891
|
+
/** Type: UINT16, Conditions: [{bitMaskSet param=type mask=1 reversed=true}] */
|
|
892
|
+
age?: number;
|
|
858
893
|
};
|
|
859
894
|
/** ID: 4 */
|
|
860
895
|
rssiPing: {
|
|
896
|
+
/** Type: DATA8 */
|
|
897
|
+
type: number;
|
|
898
|
+
};
|
|
899
|
+
/** ID: 5 */
|
|
900
|
+
rssiRequest: Record<string, never>;
|
|
901
|
+
/** ID: 6 */
|
|
902
|
+
reportRssiMeasurements: {
|
|
903
|
+
/** Type: IEEE_ADDR */
|
|
904
|
+
measuringDeviceAddr: string;
|
|
861
905
|
/** Type: UINT8 */
|
|
862
|
-
|
|
906
|
+
numNeighbors: number;
|
|
907
|
+
};
|
|
908
|
+
/** ID: 7 */
|
|
909
|
+
requestOwnLocation: {
|
|
910
|
+
/** Type: IEEE_ADDR */
|
|
911
|
+
blindNodeAddr: string;
|
|
863
912
|
};
|
|
864
913
|
};
|
|
865
914
|
};
|
|
@@ -2516,7 +2565,7 @@ export interface TClusters {
|
|
|
2516
2565
|
/** Type: LIST_THERMO_TRANSITIONS */
|
|
2517
2566
|
transitions: ThermoTransition[];
|
|
2518
2567
|
};
|
|
2519
|
-
/** ID: 2 */
|
|
2568
|
+
/** ID: 2 | Response ID: 0 */
|
|
2520
2569
|
getWeeklySchedule: {
|
|
2521
2570
|
/** Type: UINT8 */
|
|
2522
2571
|
daystoreturn: number;
|
|
@@ -2525,7 +2574,7 @@ export interface TClusters {
|
|
|
2525
2574
|
};
|
|
2526
2575
|
/** ID: 3 */
|
|
2527
2576
|
clearWeeklySchedule: Record<string, never>;
|
|
2528
|
-
/** ID: 4 */
|
|
2577
|
+
/** ID: 4 | Response ID: 1 */
|
|
2529
2578
|
getRelayStatusLog: Record<string, never>;
|
|
2530
2579
|
/** ID: 64 */
|
|
2531
2580
|
danfossSetpointCommand: {
|