zigbee-herdsman-converters 14.0.362 → 14.0.366

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.
@@ -3979,6 +3979,9 @@ const converters = {
3979
3979
  const value = tuya.getDataValue(msg.data.datatype, msg.data.data);
3980
3980
 
3981
3981
  switch (dp) {
3982
+ case tuya.dataPoints.saswellHeating:
3983
+ // heating status 1 - heating
3984
+ return {'heating': value ? 'ON' : 'OFF'};
3982
3985
  case tuya.dataPoints.saswellWindowDetection:
3983
3986
  return {window_detection: value ? 'ON' : 'OFF'};
3984
3987
  case tuya.dataPoints.saswellFrostDetection:
@@ -805,7 +805,7 @@ const converters = {
805
805
  if (state === 'toggle' || state === 'off' || (brightness === undefined && state === 'on')) {
806
806
  if (transition.specified) {
807
807
  if (state === 'toggle') {
808
- state = meta.state.state === 'ON' ? 'OFF' : 'ON';
808
+ state = meta.state.state === 'ON' ? 'off' : 'on';
809
809
  }
810
810
 
811
811
  if (state === 'off' && meta.state.brightness && meta.state.state === 'ON') {
package/devices/innr.js CHANGED
@@ -207,6 +207,14 @@ module.exports = [
207
207
  extend: extend.light_onoff_brightness(),
208
208
  meta: {turnsOffAtBrightness1: true},
209
209
  },
210
+ {
211
+ zigbeeModel: ['RS 227 T'],
212
+ model: 'RS 227 T',
213
+ vendor: 'Innr',
214
+ description: 'GU10 spot 420 lm, dimmable, white spectrum',
215
+ extend: extend.light_onoff_brightness_colortemp({colorTempRange: [200, 454]}),
216
+ meta: {turnsOffAtBrightness1: true},
217
+ },
210
218
  {
211
219
  zigbeeModel: ['RS 128 T'],
212
220
  model: 'RS 128 T',
package/devices/osram.js CHANGED
@@ -191,7 +191,7 @@ module.exports = [
191
191
  description: 'Smart+ plug',
192
192
  vendor: 'OSRAM',
193
193
  extend: extend.switch(),
194
- whiteLabel: [{vendor: 'LEDVANCE', model: 'AB3257001NJ'}],
194
+ whiteLabel: [{vendor: 'LEDVANCE', model: 'AB3257001NJ'}, {vendor: 'LEDVANCE', model: 'AC03360'}],
195
195
  ota: ota.ledvance,
196
196
  configure: async (device, coordinatorEndpoint, logger) => {
197
197
  const endpoint = device.getEndpoint(3);
@@ -18,6 +18,7 @@ module.exports = [
18
18
  {modelID: 'TS0601', manufacturerName: '_TZE200_azqp6ssj'},
19
19
  {modelID: 'TS0601', manufacturerName: '_TZE200_zuhszj9s'},
20
20
  {modelID: 'TS0601', manufacturerName: '_TZE200_9gvruqf5'},
21
+ {modelID: 'TS0601', manufacturerName: '_TZE200_zr9c0day'},
21
22
  ],
22
23
  model: 'SEA801-Zigbee/SEA802-Zigbee',
23
24
  vendor: 'Saswell',
@@ -40,10 +41,12 @@ module.exports = [
40
41
  const endpoint = device.getEndpoint(1);
41
42
  await reporting.bind(endpoint, coordinatorEndpoint, ['genBasic']);
42
43
  },
43
- exposes: [e.battery_low(), e.window_detection(), e.child_lock(), exposes.climate()
44
- .withSetpoint('current_heating_setpoint', 5, 30, 0.5, ea.STATE_SET).withLocalTemperature(ea.STATE)
45
- .withSystemMode(['off', 'heat', 'auto'], ea.STATE_SET)
46
- .withLocalTemperatureCalibration(-30, 30, 0.1, ea.STATE_SET)
47
- .withAwayMode()],
44
+ exposes: [e.battery_low(), e.window_detection(), e.child_lock(),
45
+ exposes.binary('heating', ea.STATE, 'ON', 'OFF').withDescription('Device valve is open or closed (heating or not)'),
46
+ exposes.climate()
47
+ .withSetpoint('current_heating_setpoint', 5, 30, 0.5, ea.STATE_SET).withLocalTemperature(ea.STATE)
48
+ .withSystemMode(['off', 'heat', 'auto'], ea.STATE_SET)
49
+ .withLocalTemperatureCalibration(-30, 30, 0.1, ea.STATE_SET)
50
+ .withAwayMode()],
48
51
  },
49
52
  ];
@@ -7,6 +7,16 @@ const extend = require('../lib/extend');
7
7
  const e = exposes.presets;
8
8
  const ea = exposes.access;
9
9
 
10
+ const tzLocal = {
11
+ lift_duration: {
12
+ key: ['lift_duration'],
13
+ convertSet: async (entity, key, value, meta) => {
14
+ await entity.write(0x0102, {0xe000: {value, type: 0x21}}, {manufacturerCode: 0x105e});
15
+ return {state: {lift_duration: value}};
16
+ },
17
+ },
18
+ };
19
+
10
20
  module.exports = [
11
21
  {
12
22
  zigbeeModel: ['PUCK/SHUTTER/1'],
@@ -14,8 +24,9 @@ module.exports = [
14
24
  vendor: 'Schneider Electric',
15
25
  description: 'Roller shutter module',
16
26
  fromZigbee: [fz.cover_position_tilt],
17
- toZigbee: [tz.cover_position_tilt, tz.cover_state],
18
- exposes: [e.cover_position()],
27
+ toZigbee: [tz.cover_position_tilt, tz.cover_state, tzLocal.lift_duration],
28
+ exposes: [e.cover_position(), exposes.numeric('lift_duration', ea.STATE_SET).withUnit('seconds')
29
+ .withValueMin(0).withValueMax(300).withDescription('Duration of lift')],
19
30
  meta: {coverInverted: true},
20
31
  configure: async (device, coordinatorEndpoint, logger) => {
21
32
  const endpoint = device.getEndpoint(5);
package/devices/tuya.js CHANGED
@@ -611,7 +611,8 @@ module.exports = [
611
611
  model: 'TS0044',
612
612
  vendor: 'TuYa',
613
613
  description: 'Wireless switch with 4 buttons',
614
- whiteLabel: [{vendor: 'Lonsonho', model: 'TS0044'}, {vendor: 'Haozee', model: 'ESW-OZAA-EU'}],
614
+ whiteLabel: [{vendor: 'Lonsonho', model: 'TS0044'}, {vendor: 'Haozee', model: 'ESW-OZAA-EU'},
615
+ {vendor: 'LoraTap', model: 'SS6400ZB'}],
615
616
  fromZigbee: [fz.tuya_on_off_action, fz.battery],
616
617
  exposes: [e.battery(), e.action(['1_single', '1_double', '1_hold', '2_single', '2_double', '2_hold',
617
618
  '3_single', '3_double', '3_hold', '4_single', '4_double', '4_hold'])],
@@ -814,7 +815,7 @@ module.exports = [
814
815
  {modelID: 'TS0601', manufacturerName: '_TZE200_fzo2pocs'},
815
816
  {modelID: 'TS0601', manufacturerName: '_TZE200_5sbebbzs'},
816
817
  {modelID: 'TS0601', manufacturerName: '_TZE200_zuz7f94z'},
817
- {modelID: 'TS0601', manufakturerName: '_TZE200_iossyxra'},
818
+ {modelID: 'TS0601', manufacturerName: '_TZE200_iossyxra'},
818
819
  ],
819
820
  model: 'TS0601_cover',
820
821
  vendor: 'TuYa',
@@ -996,6 +997,9 @@ module.exports = [
996
997
  model: 'TS0601_thermostat_1',
997
998
  vendor: 'TuYa',
998
999
  description: 'Thermostatic radiator valve',
1000
+ whiteLabel: [
1001
+ {vendor: 'Unknown/id3.pl', model: 'GTZ06'},
1002
+ ],
999
1003
  onEvent: tuya.onEventSetLocalTime,
1000
1004
  fromZigbee: [fz.ignore_basic_report, fz.ignore_tuya_set_time, fz.haozee_thermostat],
1001
1005
  toZigbee: [
@@ -1792,4 +1796,13 @@ module.exports = [
1792
1796
  exposes.enum('clear_device_data', ea.SET, ['clear']),
1793
1797
  ],
1794
1798
  },
1799
+ {
1800
+ fingerprint: [{modelID: 'TS004F', manufacturerName: '_TZ3000_4fjiwweb'}],
1801
+ model: 'ERS-10TZBVK-AA',
1802
+ vendor: 'TuYa',
1803
+ description: 'Smart knob',
1804
+ fromZigbee: [fz.command_step, fz.command_toggle, fz.command_move_hue],
1805
+ toZigbee: [],
1806
+ exposes: [e.action(['toggle', 'brightness_step_up', 'brightness_step_down'])],
1807
+ },
1795
1808
  ];
@@ -89,7 +89,7 @@ module.exports = [
89
89
  fromZigbee: [fzLocal.ZMRM02],
90
90
  toZigbee: [],
91
91
  onEvent: tuya.onEventSetTime,
92
- exposes: [e.battery(), e.action([
92
+ exposes: [e.action([
93
93
  'button_1_hold', 'button_1_single', 'button_1_double',
94
94
  'button_2_hold', 'button_2_single', 'button_2_double',
95
95
  'button_3_hold', 'button_3_single', 'button_3_double',
package/lib/tuya.js CHANGED
@@ -298,6 +298,7 @@ const dataPoints = {
298
298
  neoUnknown3: 115,
299
299
  neoVolume: 116,
300
300
  // Saswell TRV
301
+ saswellHeating: 3,
301
302
  saswellWindowDetection: 8,
302
303
  saswellFrostDetection: 10,
303
304
  saswellTempCalibration: 27,
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "14.0.362",
3
+ "version": "14.0.366",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
7
7
  "@babel/code-frame": {
8
- "version": "7.16.0",
9
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz",
10
- "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==",
8
+ "version": "7.16.7",
9
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
10
+ "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
11
11
  "dev": true,
12
12
  "requires": {
13
- "@babel/highlight": "^7.16.0"
13
+ "@babel/highlight": "^7.16.7"
14
14
  }
15
15
  },
16
16
  "@babel/compat-data": {
@@ -20,20 +20,20 @@
20
20
  "dev": true
21
21
  },
22
22
  "@babel/core": {
23
- "version": "7.16.5",
24
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.5.tgz",
25
- "integrity": "sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ==",
26
- "dev": true,
27
- "requires": {
28
- "@babel/code-frame": "^7.16.0",
29
- "@babel/generator": "^7.16.5",
30
- "@babel/helper-compilation-targets": "^7.16.3",
31
- "@babel/helper-module-transforms": "^7.16.5",
32
- "@babel/helpers": "^7.16.5",
33
- "@babel/parser": "^7.16.5",
34
- "@babel/template": "^7.16.0",
35
- "@babel/traverse": "^7.16.5",
36
- "@babel/types": "^7.16.0",
23
+ "version": "7.16.7",
24
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz",
25
+ "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==",
26
+ "dev": true,
27
+ "requires": {
28
+ "@babel/code-frame": "^7.16.7",
29
+ "@babel/generator": "^7.16.7",
30
+ "@babel/helper-compilation-targets": "^7.16.7",
31
+ "@babel/helper-module-transforms": "^7.16.7",
32
+ "@babel/helpers": "^7.16.7",
33
+ "@babel/parser": "^7.16.7",
34
+ "@babel/template": "^7.16.7",
35
+ "@babel/traverse": "^7.16.7",
36
+ "@babel/types": "^7.16.7",
37
37
  "convert-source-map": "^1.7.0",
38
38
  "debug": "^4.1.0",
39
39
  "gensync": "^1.0.0-beta.2",
@@ -57,12 +57,12 @@
57
57
  }
58
58
  },
59
59
  "@babel/generator": {
60
- "version": "7.16.5",
61
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz",
62
- "integrity": "sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA==",
60
+ "version": "7.16.7",
61
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz",
62
+ "integrity": "sha512-/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==",
63
63
  "dev": true,
64
64
  "requires": {
65
- "@babel/types": "^7.16.0",
65
+ "@babel/types": "^7.16.7",
66
66
  "jsesc": "^2.5.1",
67
67
  "source-map": "^0.5.0"
68
68
  },
@@ -76,13 +76,13 @@
76
76
  }
77
77
  },
78
78
  "@babel/helper-compilation-targets": {
79
- "version": "7.16.3",
80
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz",
81
- "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==",
79
+ "version": "7.16.7",
80
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz",
81
+ "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==",
82
82
  "dev": true,
83
83
  "requires": {
84
- "@babel/compat-data": "^7.16.0",
85
- "@babel/helper-validator-option": "^7.14.5",
84
+ "@babel/compat-data": "^7.16.4",
85
+ "@babel/helper-validator-option": "^7.16.7",
86
86
  "browserslist": "^4.17.5",
87
87
  "semver": "^6.3.0"
88
88
  },
@@ -96,122 +96,122 @@
96
96
  }
97
97
  },
98
98
  "@babel/helper-environment-visitor": {
99
- "version": "7.16.5",
100
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz",
101
- "integrity": "sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg==",
99
+ "version": "7.16.7",
100
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
101
+ "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
102
102
  "dev": true,
103
103
  "requires": {
104
- "@babel/types": "^7.16.0"
104
+ "@babel/types": "^7.16.7"
105
105
  }
106
106
  },
107
107
  "@babel/helper-function-name": {
108
- "version": "7.16.0",
109
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz",
110
- "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==",
108
+ "version": "7.16.7",
109
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
110
+ "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
111
111
  "dev": true,
112
112
  "requires": {
113
- "@babel/helper-get-function-arity": "^7.16.0",
114
- "@babel/template": "^7.16.0",
115
- "@babel/types": "^7.16.0"
113
+ "@babel/helper-get-function-arity": "^7.16.7",
114
+ "@babel/template": "^7.16.7",
115
+ "@babel/types": "^7.16.7"
116
116
  }
117
117
  },
118
118
  "@babel/helper-get-function-arity": {
119
- "version": "7.16.0",
120
- "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz",
121
- "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==",
119
+ "version": "7.16.7",
120
+ "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
121
+ "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
122
122
  "dev": true,
123
123
  "requires": {
124
- "@babel/types": "^7.16.0"
124
+ "@babel/types": "^7.16.7"
125
125
  }
126
126
  },
127
127
  "@babel/helper-hoist-variables": {
128
- "version": "7.16.0",
129
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz",
130
- "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==",
128
+ "version": "7.16.7",
129
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
130
+ "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
131
131
  "dev": true,
132
132
  "requires": {
133
- "@babel/types": "^7.16.0"
133
+ "@babel/types": "^7.16.7"
134
134
  }
135
135
  },
136
136
  "@babel/helper-module-imports": {
137
- "version": "7.16.0",
138
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz",
139
- "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==",
137
+ "version": "7.16.7",
138
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
139
+ "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
140
140
  "dev": true,
141
141
  "requires": {
142
- "@babel/types": "^7.16.0"
142
+ "@babel/types": "^7.16.7"
143
143
  }
144
144
  },
145
145
  "@babel/helper-module-transforms": {
146
- "version": "7.16.5",
147
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz",
148
- "integrity": "sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ==",
146
+ "version": "7.16.7",
147
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz",
148
+ "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==",
149
149
  "dev": true,
150
150
  "requires": {
151
- "@babel/helper-environment-visitor": "^7.16.5",
152
- "@babel/helper-module-imports": "^7.16.0",
153
- "@babel/helper-simple-access": "^7.16.0",
154
- "@babel/helper-split-export-declaration": "^7.16.0",
155
- "@babel/helper-validator-identifier": "^7.15.7",
156
- "@babel/template": "^7.16.0",
157
- "@babel/traverse": "^7.16.5",
158
- "@babel/types": "^7.16.0"
151
+ "@babel/helper-environment-visitor": "^7.16.7",
152
+ "@babel/helper-module-imports": "^7.16.7",
153
+ "@babel/helper-simple-access": "^7.16.7",
154
+ "@babel/helper-split-export-declaration": "^7.16.7",
155
+ "@babel/helper-validator-identifier": "^7.16.7",
156
+ "@babel/template": "^7.16.7",
157
+ "@babel/traverse": "^7.16.7",
158
+ "@babel/types": "^7.16.7"
159
159
  }
160
160
  },
161
161
  "@babel/helper-plugin-utils": {
162
- "version": "7.16.5",
163
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz",
164
- "integrity": "sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ==",
162
+ "version": "7.16.7",
163
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
164
+ "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==",
165
165
  "dev": true
166
166
  },
167
167
  "@babel/helper-simple-access": {
168
- "version": "7.16.0",
169
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz",
170
- "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==",
168
+ "version": "7.16.7",
169
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz",
170
+ "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==",
171
171
  "dev": true,
172
172
  "requires": {
173
- "@babel/types": "^7.16.0"
173
+ "@babel/types": "^7.16.7"
174
174
  }
175
175
  },
176
176
  "@babel/helper-split-export-declaration": {
177
- "version": "7.16.0",
178
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz",
179
- "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==",
177
+ "version": "7.16.7",
178
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
179
+ "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
180
180
  "dev": true,
181
181
  "requires": {
182
- "@babel/types": "^7.16.0"
182
+ "@babel/types": "^7.16.7"
183
183
  }
184
184
  },
185
185
  "@babel/helper-validator-identifier": {
186
- "version": "7.15.7",
187
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
188
- "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==",
186
+ "version": "7.16.7",
187
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
188
+ "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
189
189
  "dev": true
190
190
  },
191
191
  "@babel/helper-validator-option": {
192
- "version": "7.14.5",
193
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz",
194
- "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==",
192
+ "version": "7.16.7",
193
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz",
194
+ "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==",
195
195
  "dev": true
196
196
  },
197
197
  "@babel/helpers": {
198
- "version": "7.16.5",
199
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.5.tgz",
200
- "integrity": "sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw==",
198
+ "version": "7.16.7",
199
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz",
200
+ "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==",
201
201
  "dev": true,
202
202
  "requires": {
203
- "@babel/template": "^7.16.0",
204
- "@babel/traverse": "^7.16.5",
205
- "@babel/types": "^7.16.0"
203
+ "@babel/template": "^7.16.7",
204
+ "@babel/traverse": "^7.16.7",
205
+ "@babel/types": "^7.16.7"
206
206
  }
207
207
  },
208
208
  "@babel/highlight": {
209
- "version": "7.16.0",
210
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz",
211
- "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==",
209
+ "version": "7.16.7",
210
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
211
+ "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
212
212
  "dev": true,
213
213
  "requires": {
214
- "@babel/helper-validator-identifier": "^7.15.7",
214
+ "@babel/helper-validator-identifier": "^7.16.7",
215
215
  "chalk": "^2.0.0",
216
216
  "js-tokens": "^4.0.0"
217
217
  },
@@ -275,9 +275,9 @@
275
275
  }
276
276
  },
277
277
  "@babel/parser": {
278
- "version": "7.16.6",
279
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.6.tgz",
280
- "integrity": "sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==",
278
+ "version": "7.16.7",
279
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz",
280
+ "integrity": "sha512-sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==",
281
281
  "dev": true
282
282
  },
283
283
  "@babel/plugin-syntax-async-generators": {
@@ -389,39 +389,39 @@
389
389
  }
390
390
  },
391
391
  "@babel/plugin-syntax-typescript": {
392
- "version": "7.16.5",
393
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.5.tgz",
394
- "integrity": "sha512-/d4//lZ1Vqb4mZ5xTep3dDK888j7BGM/iKqBmndBaoYAFPlPKrGU608VVBz5JeyAb6YQDjRu1UKqj86UhwWVgw==",
392
+ "version": "7.16.7",
393
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz",
394
+ "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==",
395
395
  "dev": true,
396
396
  "requires": {
397
- "@babel/helper-plugin-utils": "^7.16.5"
397
+ "@babel/helper-plugin-utils": "^7.16.7"
398
398
  }
399
399
  },
400
400
  "@babel/template": {
401
- "version": "7.16.0",
402
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz",
403
- "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==",
401
+ "version": "7.16.7",
402
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
403
+ "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
404
404
  "dev": true,
405
405
  "requires": {
406
- "@babel/code-frame": "^7.16.0",
407
- "@babel/parser": "^7.16.0",
408
- "@babel/types": "^7.16.0"
406
+ "@babel/code-frame": "^7.16.7",
407
+ "@babel/parser": "^7.16.7",
408
+ "@babel/types": "^7.16.7"
409
409
  }
410
410
  },
411
411
  "@babel/traverse": {
412
- "version": "7.16.5",
413
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz",
414
- "integrity": "sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ==",
415
- "dev": true,
416
- "requires": {
417
- "@babel/code-frame": "^7.16.0",
418
- "@babel/generator": "^7.16.5",
419
- "@babel/helper-environment-visitor": "^7.16.5",
420
- "@babel/helper-function-name": "^7.16.0",
421
- "@babel/helper-hoist-variables": "^7.16.0",
422
- "@babel/helper-split-export-declaration": "^7.16.0",
423
- "@babel/parser": "^7.16.5",
424
- "@babel/types": "^7.16.0",
412
+ "version": "7.16.7",
413
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz",
414
+ "integrity": "sha512-8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==",
415
+ "dev": true,
416
+ "requires": {
417
+ "@babel/code-frame": "^7.16.7",
418
+ "@babel/generator": "^7.16.7",
419
+ "@babel/helper-environment-visitor": "^7.16.7",
420
+ "@babel/helper-function-name": "^7.16.7",
421
+ "@babel/helper-hoist-variables": "^7.16.7",
422
+ "@babel/helper-split-export-declaration": "^7.16.7",
423
+ "@babel/parser": "^7.16.7",
424
+ "@babel/types": "^7.16.7",
425
425
  "debug": "^4.1.0",
426
426
  "globals": "^11.1.0"
427
427
  },
@@ -435,12 +435,12 @@
435
435
  }
436
436
  },
437
437
  "@babel/types": {
438
- "version": "7.16.0",
439
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz",
440
- "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==",
438
+ "version": "7.16.7",
439
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz",
440
+ "integrity": "sha512-E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==",
441
441
  "dev": true,
442
442
  "requires": {
443
- "@babel/helper-validator-identifier": "^7.15.7",
443
+ "@babel/helper-validator-identifier": "^7.16.7",
444
444
  "to-fast-properties": "^2.0.0"
445
445
  }
446
446
  },
@@ -772,9 +772,9 @@
772
772
  "dev": true
773
773
  },
774
774
  "@types/babel__core": {
775
- "version": "7.1.17",
776
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.17.tgz",
777
- "integrity": "sha512-6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A==",
775
+ "version": "7.1.18",
776
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz",
777
+ "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==",
778
778
  "dev": true,
779
779
  "requires": {
780
780
  "@babel/parser": "^7.1.0",
@@ -852,9 +852,9 @@
852
852
  "dev": true
853
853
  },
854
854
  "@types/node": {
855
- "version": "17.0.4",
856
- "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz",
857
- "integrity": "sha512-6xwbrW4JJiJLgF+zNypN5wr2ykM9/jHcL7rQ8fZe2vuftggjzZeRSM4OwRc6Xk8qWjwJ99qVHo/JgOGmomWRog==",
855
+ "version": "17.0.5",
856
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.5.tgz",
857
+ "integrity": "sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw==",
858
858
  "dev": true
859
859
  },
860
860
  "@types/prettier": {
@@ -885,15 +885,15 @@
885
885
  "dev": true
886
886
  },
887
887
  "@typescript-eslint/experimental-utils": {
888
- "version": "5.8.0",
889
- "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.8.0.tgz",
890
- "integrity": "sha512-KN5FvNH71bhZ8fKtL+lhW7bjm7cxs1nt+hrDZWIqb6ViCffQcWyLunGrgvISgkRojIDcXIsH+xlFfI4RCDA0xA==",
888
+ "version": "5.8.1",
889
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.8.1.tgz",
890
+ "integrity": "sha512-fbodVnjIDU4JpeXWRDsG5IfIjYBxEvs8EBO8W1+YVdtrc2B9ppfof5sZhVEDOtgTfFHnYQJDI8+qdqLYO4ceww==",
891
891
  "dev": true,
892
892
  "requires": {
893
893
  "@types/json-schema": "^7.0.9",
894
- "@typescript-eslint/scope-manager": "5.8.0",
895
- "@typescript-eslint/types": "5.8.0",
896
- "@typescript-eslint/typescript-estree": "5.8.0",
894
+ "@typescript-eslint/scope-manager": "5.8.1",
895
+ "@typescript-eslint/types": "5.8.1",
896
+ "@typescript-eslint/typescript-estree": "5.8.1",
897
897
  "eslint-scope": "^5.1.1",
898
898
  "eslint-utils": "^3.0.0"
899
899
  },
@@ -917,29 +917,29 @@
917
917
  }
918
918
  },
919
919
  "@typescript-eslint/scope-manager": {
920
- "version": "5.8.0",
921
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.8.0.tgz",
922
- "integrity": "sha512-x82CYJsLOjPCDuFFEbS6e7K1QEWj7u5Wk1alw8A+gnJiYwNnDJk0ib6PCegbaPMjrfBvFKa7SxE3EOnnIQz2Gg==",
920
+ "version": "5.8.1",
921
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.8.1.tgz",
922
+ "integrity": "sha512-DGxJkNyYruFH3NIZc3PwrzwOQAg7vvgsHsHCILOLvUpupgkwDZdNq/cXU3BjF4LNrCsVg0qxEyWasys5AiJ85Q==",
923
923
  "dev": true,
924
924
  "requires": {
925
- "@typescript-eslint/types": "5.8.0",
926
- "@typescript-eslint/visitor-keys": "5.8.0"
925
+ "@typescript-eslint/types": "5.8.1",
926
+ "@typescript-eslint/visitor-keys": "5.8.1"
927
927
  }
928
928
  },
929
929
  "@typescript-eslint/types": {
930
- "version": "5.8.0",
931
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.8.0.tgz",
932
- "integrity": "sha512-LdCYOqeqZWqCMOmwFnum6YfW9F3nKuxJiR84CdIRN5nfHJ7gyvGpXWqL/AaW0k3Po0+wm93ARAsOdzlZDPCcXg==",
930
+ "version": "5.8.1",
931
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.8.1.tgz",
932
+ "integrity": "sha512-L/FlWCCgnjKOLefdok90/pqInkomLnAcF9UAzNr+DSqMC3IffzumHTQTrINXhP1gVp9zlHiYYjvozVZDPleLcA==",
933
933
  "dev": true
934
934
  },
935
935
  "@typescript-eslint/typescript-estree": {
936
- "version": "5.8.0",
937
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.8.0.tgz",
938
- "integrity": "sha512-srfeZ3URdEcUsSLbkOFqS7WoxOqn8JNil2NSLO9O+I2/Uyc85+UlfpEvQHIpj5dVts7KKOZnftoJD/Fdv0L7nQ==",
936
+ "version": "5.8.1",
937
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.8.1.tgz",
938
+ "integrity": "sha512-26lQ8l8tTbG7ri7xEcCFT9ijU5Fk+sx/KRRyyzCv7MQ+rZZlqiDPtMKWLC8P7o+dtCnby4c+OlxuX1tp8WfafQ==",
939
939
  "dev": true,
940
940
  "requires": {
941
- "@typescript-eslint/types": "5.8.0",
942
- "@typescript-eslint/visitor-keys": "5.8.0",
941
+ "@typescript-eslint/types": "5.8.1",
942
+ "@typescript-eslint/visitor-keys": "5.8.1",
943
943
  "debug": "^4.3.2",
944
944
  "globby": "^11.0.4",
945
945
  "is-glob": "^4.0.3",
@@ -948,12 +948,12 @@
948
948
  }
949
949
  },
950
950
  "@typescript-eslint/visitor-keys": {
951
- "version": "5.8.0",
952
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.8.0.tgz",
953
- "integrity": "sha512-+HDIGOEMnqbxdAHegxvnOqESUH6RWFRR2b8qxP1W9CZnnYh4Usz6MBL+2KMAgPk/P0o9c1HqnYtwzVH6GTIqug==",
951
+ "version": "5.8.1",
952
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.8.1.tgz",
953
+ "integrity": "sha512-SWgiWIwocK6NralrJarPZlWdr0hZnj5GXHIgfdm8hNkyKvpeQuFyLP6YjSIe9kf3YBIfU6OHSZLYkQ+smZwtNg==",
954
954
  "dev": true,
955
955
  "requires": {
956
- "@typescript-eslint/types": "5.8.0",
956
+ "@typescript-eslint/types": "5.8.1",
957
957
  "eslint-visitor-keys": "^3.0.0"
958
958
  }
959
959
  },
@@ -964,9 +964,9 @@
964
964
  "dev": true
965
965
  },
966
966
  "acorn": {
967
- "version": "8.6.0",
968
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz",
969
- "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==",
967
+ "version": "8.7.0",
968
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz",
969
+ "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==",
970
970
  "dev": true
971
971
  },
972
972
  "acorn-globals": {
@@ -1286,9 +1286,9 @@
1286
1286
  "dev": true
1287
1287
  },
1288
1288
  "caniuse-lite": {
1289
- "version": "1.0.30001292",
1290
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001292.tgz",
1291
- "integrity": "sha512-jnT4Tq0Q4ma+6nncYQVe7d73kmDmE9C3OGTx3MvW7lBM/eY1S1DZTMBON7dqV481RhNiS5OxD7k9JQvmDOTirw==",
1289
+ "version": "1.0.30001294",
1290
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001294.tgz",
1291
+ "integrity": "sha512-LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g==",
1292
1292
  "dev": true
1293
1293
  },
1294
1294
  "chalk": {
@@ -1520,9 +1520,9 @@
1520
1520
  }
1521
1521
  },
1522
1522
  "electron-to-chromium": {
1523
- "version": "1.4.28",
1524
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.28.tgz",
1525
- "integrity": "sha512-Gzbf0wUtKfyPaqf0Plz+Ctinf9eQIzxEqBHwSvbGfeOm9GMNdLxyu1dNiCUfM+x6r4BE0xUJNh3Nmg9gfAtTmg==",
1523
+ "version": "1.4.31",
1524
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.31.tgz",
1525
+ "integrity": "sha512-t3XVQtk+Frkv6aTD4RRk0OqosU+VLe1dQFW83MDer78ZD6a52frgXuYOIsLYTQiH2Lm+JB2OKYcn7zrX+YGAiQ==",
1526
1526
  "dev": true
1527
1527
  },
1528
1528
  "emittery": {
@@ -1621,9 +1621,9 @@
1621
1621
  }
1622
1622
  },
1623
1623
  "eslint": {
1624
- "version": "8.5.0",
1625
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz",
1626
- "integrity": "sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==",
1624
+ "version": "8.6.0",
1625
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.6.0.tgz",
1626
+ "integrity": "sha512-UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw==",
1627
1627
  "dev": true,
1628
1628
  "requires": {
1629
1629
  "@eslint/eslintrc": "^1.0.5",
@@ -1638,7 +1638,7 @@
1638
1638
  "eslint-scope": "^7.1.0",
1639
1639
  "eslint-utils": "^3.0.0",
1640
1640
  "eslint-visitor-keys": "^3.1.0",
1641
- "espree": "^9.2.0",
1641
+ "espree": "^9.3.0",
1642
1642
  "esquery": "^1.4.0",
1643
1643
  "esutils": "^2.0.2",
1644
1644
  "fast-deep-equal": "^3.1.3",
@@ -1673,9 +1673,9 @@
1673
1673
  "dev": true
1674
1674
  },
1675
1675
  "eslint-plugin-jest": {
1676
- "version": "25.3.0",
1677
- "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.3.0.tgz",
1678
- "integrity": "sha512-79WQtuBsTN1S8Y9+7euBYwxIOia/k7ykkl9OCBHL3xuww5ecursHy/D8GCIlvzHVWv85gOkS5Kv6Sh7RxOgK1Q==",
1676
+ "version": "25.3.3",
1677
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.3.3.tgz",
1678
+ "integrity": "sha512-qi7aduaU4/oWegWo0zH4kbJbx8+Be+ABTr72OnO68zTMcJeeSuyH1CduTGF4ATyNFgpE1zp0u10/gIhe+QDSfg==",
1679
1679
  "dev": true,
1680
1680
  "requires": {
1681
1681
  "@typescript-eslint/experimental-utils": "^5.0.0"
@@ -1715,12 +1715,12 @@
1715
1715
  "dev": true
1716
1716
  },
1717
1717
  "espree": {
1718
- "version": "9.2.0",
1719
- "resolved": "https://registry.npmjs.org/espree/-/espree-9.2.0.tgz",
1720
- "integrity": "sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==",
1718
+ "version": "9.3.0",
1719
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.0.tgz",
1720
+ "integrity": "sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==",
1721
1721
  "dev": true,
1722
1722
  "requires": {
1723
- "acorn": "^8.6.0",
1723
+ "acorn": "^8.7.0",
1724
1724
  "acorn-jsx": "^5.3.1",
1725
1725
  "eslint-visitor-keys": "^3.1.0"
1726
1726
  }
@@ -2272,9 +2272,9 @@
2272
2272
  }
2273
2273
  },
2274
2274
  "istanbul-reports": {
2275
- "version": "3.1.2",
2276
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.2.tgz",
2277
- "integrity": "sha512-0gHxuT1NNC0aEIL1zbJ+MTgPbbHhU77eJPuU35WKA7TgXiSNlCAx4PENoMrH0Or6M2H80TaZcWKhM0IK6V8gRw==",
2275
+ "version": "3.1.3",
2276
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.3.tgz",
2277
+ "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==",
2278
2278
  "dev": true,
2279
2279
  "requires": {
2280
2280
  "html-escaper": "^2.0.0",
@@ -3814,9 +3814,9 @@
3814
3814
  "dev": true
3815
3815
  },
3816
3816
  "zigbee-herdsman": {
3817
- "version": "0.13.186",
3818
- "resolved": "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.186.tgz",
3819
- "integrity": "sha512-F3f6KZdvNKQTEnzbIyCrTUmXS+RFK4ZUTvIHfE5R3ehuismSGqjlyJl79KGquuqOyMHGrndJhLxoKhF7/uptGg==",
3817
+ "version": "0.13.188",
3818
+ "resolved": "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.188.tgz",
3819
+ "integrity": "sha512-eaI91kwl46TgumM7v9WtpEIfwblHlLjpLOM51DqWlnIqq3ehTwu2wTMQcTsxqxcNKzx4CpCmkBAbdaKc1ZlRVQ==",
3820
3820
  "requires": {
3821
3821
  "debounce": "^1.2.1",
3822
3822
  "debug": "^4.3.3",
@@ -5591,9 +5591,9 @@
5591
5591
  }
5592
5592
  },
5593
5593
  "@types/babel__generator": {
5594
- "version": "7.6.3",
5595
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz",
5596
- "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==",
5594
+ "version": "7.6.4",
5595
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
5596
+ "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
5597
5597
  "requires": {
5598
5598
  "@babel/types": "^7.0.0"
5599
5599
  }
@@ -5637,9 +5637,9 @@
5637
5637
  }
5638
5638
  },
5639
5639
  "@types/istanbul-lib-coverage": {
5640
- "version": "2.0.3",
5641
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz",
5642
- "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw=="
5640
+ "version": "2.0.4",
5641
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
5642
+ "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="
5643
5643
  },
5644
5644
  "@types/istanbul-lib-report": {
5645
5645
  "version": "3.0.0",
@@ -5693,9 +5693,9 @@
5693
5693
  }
5694
5694
  },
5695
5695
  "@types/node": {
5696
- "version": "17.0.0",
5697
- "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.0.tgz",
5698
- "integrity": "sha512-eMhwJXc931Ihh4tkU+Y7GiLzT/y/DBNpNtr4yU9O2w3SYBsr9NaOPhQlLKRmoWtI54uNwuo0IOUFQjVOTZYRvw=="
5696
+ "version": "17.0.4",
5697
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz",
5698
+ "integrity": "sha512-6xwbrW4JJiJLgF+zNypN5wr2ykM9/jHcL7rQ8fZe2vuftggjzZeRSM4OwRc6Xk8qWjwJ99qVHo/JgOGmomWRog=="
5699
5699
  },
5700
5700
  "@types/prettier": {
5701
5701
  "version": "2.4.2",
@@ -5729,12 +5729,12 @@
5729
5729
  "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="
5730
5730
  },
5731
5731
  "@typescript-eslint/eslint-plugin": {
5732
- "version": "5.7.0",
5733
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.7.0.tgz",
5734
- "integrity": "sha512-8RTGBpNn5a9M628wBPrCbJ+v3YTEOE2qeZb7TDkGKTDXSj36KGRg92SpFFaR/0S3rSXQxM0Og/kV9EyadsYSBg==",
5732
+ "version": "5.8.0",
5733
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.8.0.tgz",
5734
+ "integrity": "sha512-spu1UW7QuBn0nJ6+psnfCc3iVoQAifjKORgBngKOmC8U/1tbe2YJMzYQqDGYB4JCss7L8+RM2kKLb1B1Aw9BNA==",
5735
5735
  "requires": {
5736
- "@typescript-eslint/experimental-utils": "5.7.0",
5737
- "@typescript-eslint/scope-manager": "5.7.0",
5736
+ "@typescript-eslint/experimental-utils": "5.8.0",
5737
+ "@typescript-eslint/scope-manager": "5.8.0",
5738
5738
  "debug": "^4.3.2",
5739
5739
  "functional-red-black-tree": "^1.0.1",
5740
5740
  "ignore": "^5.1.8",
@@ -5744,50 +5744,50 @@
5744
5744
  }
5745
5745
  },
5746
5746
  "@typescript-eslint/experimental-utils": {
5747
- "version": "5.7.0",
5748
- "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.7.0.tgz",
5749
- "integrity": "sha512-u57eZ5FbEpzN5kSjmVrSesovWslH2ZyNPnaXQMXWgH57d5+EVHEt76W75vVuI9qKZ5BMDKNfRN+pxcPEjQjb2A==",
5747
+ "version": "5.8.0",
5748
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.8.0.tgz",
5749
+ "integrity": "sha512-KN5FvNH71bhZ8fKtL+lhW7bjm7cxs1nt+hrDZWIqb6ViCffQcWyLunGrgvISgkRojIDcXIsH+xlFfI4RCDA0xA==",
5750
5750
  "requires": {
5751
5751
  "@types/json-schema": "^7.0.9",
5752
- "@typescript-eslint/scope-manager": "5.7.0",
5753
- "@typescript-eslint/types": "5.7.0",
5754
- "@typescript-eslint/typescript-estree": "5.7.0",
5752
+ "@typescript-eslint/scope-manager": "5.8.0",
5753
+ "@typescript-eslint/types": "5.8.0",
5754
+ "@typescript-eslint/typescript-estree": "5.8.0",
5755
5755
  "eslint-scope": "^5.1.1",
5756
5756
  "eslint-utils": "^3.0.0"
5757
5757
  }
5758
5758
  },
5759
5759
  "@typescript-eslint/parser": {
5760
- "version": "5.7.0",
5761
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.7.0.tgz",
5762
- "integrity": "sha512-m/gWCCcS4jXw6vkrPQ1BjZ1vomP01PArgzvauBqzsoZ3urLbsRChexB8/YV8z9HwE3qlJM35FxfKZ1nfP/4x8g==",
5760
+ "version": "5.8.0",
5761
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.8.0.tgz",
5762
+ "integrity": "sha512-Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw==",
5763
5763
  "requires": {
5764
- "@typescript-eslint/scope-manager": "5.7.0",
5765
- "@typescript-eslint/types": "5.7.0",
5766
- "@typescript-eslint/typescript-estree": "5.7.0",
5764
+ "@typescript-eslint/scope-manager": "5.8.0",
5765
+ "@typescript-eslint/types": "5.8.0",
5766
+ "@typescript-eslint/typescript-estree": "5.8.0",
5767
5767
  "debug": "^4.3.2"
5768
5768
  }
5769
5769
  },
5770
5770
  "@typescript-eslint/scope-manager": {
5771
- "version": "5.7.0",
5772
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.7.0.tgz",
5773
- "integrity": "sha512-7mxR520DGq5F7sSSgM0HSSMJ+TFUymOeFRMfUfGFAVBv8BR+Jv1vHgAouYUvWRZeszVBJlLcc9fDdktxb5kmxA==",
5771
+ "version": "5.8.0",
5772
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.8.0.tgz",
5773
+ "integrity": "sha512-x82CYJsLOjPCDuFFEbS6e7K1QEWj7u5Wk1alw8A+gnJiYwNnDJk0ib6PCegbaPMjrfBvFKa7SxE3EOnnIQz2Gg==",
5774
5774
  "requires": {
5775
- "@typescript-eslint/types": "5.7.0",
5776
- "@typescript-eslint/visitor-keys": "5.7.0"
5775
+ "@typescript-eslint/types": "5.8.0",
5776
+ "@typescript-eslint/visitor-keys": "5.8.0"
5777
5777
  }
5778
5778
  },
5779
5779
  "@typescript-eslint/types": {
5780
- "version": "5.7.0",
5781
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.7.0.tgz",
5782
- "integrity": "sha512-5AeYIF5p2kAneIpnLFve8g50VyAjq7udM7ApZZ9JYjdPjkz0LvODfuSHIDUVnIuUoxafoWzpFyU7Sqbxgi79mA=="
5780
+ "version": "5.8.0",
5781
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.8.0.tgz",
5782
+ "integrity": "sha512-LdCYOqeqZWqCMOmwFnum6YfW9F3nKuxJiR84CdIRN5nfHJ7gyvGpXWqL/AaW0k3Po0+wm93ARAsOdzlZDPCcXg=="
5783
5783
  },
5784
5784
  "@typescript-eslint/typescript-estree": {
5785
- "version": "5.7.0",
5786
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.7.0.tgz",
5787
- "integrity": "sha512-aO1Ql+izMrTnPj5aFFlEJkpD4jRqC4Gwhygu2oHK2wfVQpmOPbyDSveJ+r/NQo+PWV43M6uEAeLVbTi09dFLhg==",
5785
+ "version": "5.8.0",
5786
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.8.0.tgz",
5787
+ "integrity": "sha512-srfeZ3URdEcUsSLbkOFqS7WoxOqn8JNil2NSLO9O+I2/Uyc85+UlfpEvQHIpj5dVts7KKOZnftoJD/Fdv0L7nQ==",
5788
5788
  "requires": {
5789
- "@typescript-eslint/types": "5.7.0",
5790
- "@typescript-eslint/visitor-keys": "5.7.0",
5789
+ "@typescript-eslint/types": "5.8.0",
5790
+ "@typescript-eslint/visitor-keys": "5.8.0",
5791
5791
  "debug": "^4.3.2",
5792
5792
  "globby": "^11.0.4",
5793
5793
  "is-glob": "^4.0.3",
@@ -5796,11 +5796,11 @@
5796
5796
  }
5797
5797
  },
5798
5798
  "@typescript-eslint/visitor-keys": {
5799
- "version": "5.7.0",
5800
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.7.0.tgz",
5801
- "integrity": "sha512-hdohahZ4lTFcglZSJ3DGdzxQHBSxsLVqHzkiOmKi7xVAWC4y2c1bIMKmPJSrA4aOEoRUPOKQ87Y/taC7yVHpFg==",
5799
+ "version": "5.8.0",
5800
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.8.0.tgz",
5801
+ "integrity": "sha512-+HDIGOEMnqbxdAHegxvnOqESUH6RWFRR2b8qxP1W9CZnnYh4Usz6MBL+2KMAgPk/P0o9c1HqnYtwzVH6GTIqug==",
5802
5802
  "requires": {
5803
- "@typescript-eslint/types": "5.7.0",
5803
+ "@typescript-eslint/types": "5.8.0",
5804
5804
  "eslint-visitor-keys": "^3.0.0"
5805
5805
  }
5806
5806
  },
@@ -6218,9 +6218,9 @@
6218
6218
  "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
6219
6219
  },
6220
6220
  "caniuse-lite": {
6221
- "version": "1.0.30001291",
6222
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001291.tgz",
6223
- "integrity": "sha512-roMV5V0HNGgJ88s42eE70sstqGW/gwFndosYrikHthw98N5tLnOTxFqMLQjZVRxTWFlJ4rn+MsgXrR7MDPY4jA=="
6221
+ "version": "1.0.30001292",
6222
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001292.tgz",
6223
+ "integrity": "sha512-jnT4Tq0Q4ma+6nncYQVe7d73kmDmE9C3OGTx3MvW7lBM/eY1S1DZTMBON7dqV481RhNiS5OxD7k9JQvmDOTirw=="
6224
6224
  },
6225
6225
  "chalk": {
6226
6226
  "version": "2.4.2",
@@ -6368,9 +6368,9 @@
6368
6368
  }
6369
6369
  },
6370
6370
  "core-js-compat": {
6371
- "version": "3.20.0",
6372
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.0.tgz",
6373
- "integrity": "sha512-relrah5h+sslXssTTOkvqcC/6RURifB0W5yhYBdBkaPYa5/2KBMiog3XiD+s3TwEHWxInWVv4Jx2/Lw0vng+IQ==",
6371
+ "version": "3.20.1",
6372
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.1.tgz",
6373
+ "integrity": "sha512-AVhKZNpqMV3Jz8hU0YEXXE06qoxtQGsAqU0u1neUngz5IusDJRX/ZJ6t3i7mS7QxNyEONbCo14GprkBrxPlTZA==",
6374
6374
  "requires": {
6375
6375
  "browserslist": "^4.19.1",
6376
6376
  "semver": "7.0.0"
@@ -6539,9 +6539,9 @@
6539
6539
  }
6540
6540
  },
6541
6541
  "electron-to-chromium": {
6542
- "version": "1.4.24",
6543
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.24.tgz",
6544
- "integrity": "sha512-erwx5r69B/WFfFuF2jcNN0817BfDBdC4765kQ6WltOMuwsimlQo3JTEq0Cle+wpHralwdeX3OfAtw/mHxPK0Wg=="
6542
+ "version": "1.4.28",
6543
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.28.tgz",
6544
+ "integrity": "sha512-Gzbf0wUtKfyPaqf0Plz+Ctinf9eQIzxEqBHwSvbGfeOm9GMNdLxyu1dNiCUfM+x6r4BE0xUJNh3Nmg9gfAtTmg=="
6545
6545
  },
6546
6546
  "emittery": {
6547
6547
  "version": "0.8.1",
@@ -7252,9 +7252,9 @@
7252
7252
  "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
7253
7253
  },
7254
7254
  "ignore": {
7255
- "version": "5.1.9",
7256
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz",
7257
- "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ=="
7255
+ "version": "5.2.0",
7256
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
7257
+ "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="
7258
7258
  },
7259
7259
  "import-fresh": {
7260
7260
  "version": "3.3.0",
@@ -7458,9 +7458,9 @@
7458
7458
  }
7459
7459
  },
7460
7460
  "istanbul-reports": {
7461
- "version": "3.1.1",
7462
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.1.tgz",
7463
- "integrity": "sha512-q1kvhAXWSsXfMjCdNHNPKZZv94OlspKnoGv+R9RGbnqOOQ0VbNfLFgQDVgi7hHenKsndGq3/o0OBdzDXthWcNw==",
7461
+ "version": "3.1.2",
7462
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.2.tgz",
7463
+ "integrity": "sha512-0gHxuT1NNC0aEIL1zbJ+MTgPbbHhU77eJPuU35WKA7TgXiSNlCAx4PENoMrH0Or6M2H80TaZcWKhM0IK6V8gRw==",
7464
7464
  "requires": {
7465
7465
  "html-escaper": "^2.0.0",
7466
7466
  "istanbul-lib-report": "^3.0.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "14.0.362",
3
+ "version": "14.0.366",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -38,7 +38,7 @@
38
38
  "buffer-crc32": "^0.2.13",
39
39
  "https-proxy-agent": "^5.0.0",
40
40
  "tar-stream": "^2.2.0",
41
- "zigbee-herdsman": "^0.13.186"
41
+ "zigbee-herdsman": "^0.13.188"
42
42
  },
43
43
  "devDependencies": {
44
44
  "eslint": "*",