zigbee-herdsman-converters 14.0.461 → 14.0.464
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/converters/fromZigbee.js +18 -0
- package/converters/toZigbee.js +0 -3
- package/devices/adeo.js +14 -0
- package/devices/awox.js +1 -1
- package/devices/envilar.js +12 -0
- package/devices/evn.js +17 -12
- package/devices/lidl.js +9 -0
- package/devices/niko.js +16 -0
- package/devices/philips.js +9 -0
- package/devices/schneider_electric.js +1 -1
- package/devices/tuya.js +26 -1
- package/devices/xiaomi.js +5 -5
- package/lib/tuya.js +1 -1
- package/npm-shrinkwrap.json +114 -132
- package/package.json +1 -1
package/converters/fromZigbee.js
CHANGED
|
@@ -5691,6 +5691,24 @@ const converters = {
|
|
|
5691
5691
|
return {position};
|
|
5692
5692
|
},
|
|
5693
5693
|
},
|
|
5694
|
+
xiaomi_curtain_position_tilt: {
|
|
5695
|
+
cluster: 'closuresWindowCovering',
|
|
5696
|
+
type: ['attributeReport', 'readResponse'],
|
|
5697
|
+
options: [exposes.options.invert_cover()],
|
|
5698
|
+
convert: (model, msg, publish, options, meta) => {
|
|
5699
|
+
const result = {};
|
|
5700
|
+
const invert = model.meta && model.meta.coverInverted ? !options.invert_cover : options.invert_cover;
|
|
5701
|
+
if (msg.data.hasOwnProperty('currentPositionLiftPercentage') && msg.data['currentPositionLiftPercentage'] <= 100) {
|
|
5702
|
+
const value = msg.data['currentPositionLiftPercentage'];
|
|
5703
|
+
result[postfixWithEndpointName('position', msg, model)] = invert ? 100 - value : value;
|
|
5704
|
+
}
|
|
5705
|
+
if (msg.data.hasOwnProperty('currentPositionTiltPercentage') && msg.data['currentPositionTiltPercentage'] <= 100) {
|
|
5706
|
+
const value = msg.data['currentPositionTiltPercentage'];
|
|
5707
|
+
result[postfixWithEndpointName('tilt', msg, model)] = invert ? 100 - value : value;
|
|
5708
|
+
}
|
|
5709
|
+
return result;
|
|
5710
|
+
},
|
|
5711
|
+
},
|
|
5694
5712
|
xiaomi_curtain_acn002_position: {
|
|
5695
5713
|
cluster: 'genAnalogOutput',
|
|
5696
5714
|
type: ['attributeReport', 'readResponse'],
|
package/converters/toZigbee.js
CHANGED
|
@@ -2438,9 +2438,6 @@ const converters = {
|
|
|
2438
2438
|
} else {
|
|
2439
2439
|
await entity.command('closuresWindowCovering', 'stop', {}, utils.getOptions(meta.mapped, entity));
|
|
2440
2440
|
}
|
|
2441
|
-
|
|
2442
|
-
// Xiaomi curtain does not send position update on stop, request this.
|
|
2443
|
-
await entity.read('genAnalogOutput', [0x0055]);
|
|
2444
2441
|
} else {
|
|
2445
2442
|
const lookup = {'open': 100, 'close': 0, 'on': 100, 'off': 0};
|
|
2446
2443
|
|
package/devices/adeo.js
CHANGED
|
@@ -6,6 +6,13 @@ const tz = require('../converters/toZigbee');
|
|
|
6
6
|
const e = exposes.presets;
|
|
7
7
|
|
|
8
8
|
module.exports = [
|
|
9
|
+
{
|
|
10
|
+
zigbeeModel: ['ZBEK-4'],
|
|
11
|
+
model: 'IM-CDZDGAAA0005KA8MAN',
|
|
12
|
+
vendor: 'ADEO',
|
|
13
|
+
description: 'ENKI LEXMAN RGBTW GU10 Bulb',
|
|
14
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
|
|
15
|
+
},
|
|
9
16
|
{
|
|
10
17
|
zigbeeModel: ['ZBEK-12'],
|
|
11
18
|
model: 'IA-CDZFB2AA007NA-MZN-01',
|
|
@@ -13,6 +20,13 @@ module.exports = [
|
|
|
13
20
|
description: 'ENKI LEXMAN E27 LED white',
|
|
14
21
|
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
15
22
|
},
|
|
23
|
+
{
|
|
24
|
+
zigbeeModel: ['ZBEK-13'],
|
|
25
|
+
model: 'IG-CDZFB2AG010RA-MNZ',
|
|
26
|
+
vendor: 'ADEO',
|
|
27
|
+
description: 'ENKI LEXMAN E27 LED white',
|
|
28
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
29
|
+
},
|
|
16
30
|
{
|
|
17
31
|
zigbeeModel: ['ZBEK-3'],
|
|
18
32
|
model: 'IP-CDZOTAAP005JA-MAN',
|
package/devices/awox.js
CHANGED
|
@@ -183,7 +183,7 @@ module.exports = [
|
|
|
183
183
|
model: '33943/33944/33946',
|
|
184
184
|
vendor: 'AwoX',
|
|
185
185
|
description: 'LED RGB & brightness',
|
|
186
|
-
extend: extend.light_onoff_brightness_colortemp_color(),
|
|
186
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370], supportsHS: true}),
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
fingerprint: [
|
package/devices/envilar.js
CHANGED
|
@@ -2,8 +2,20 @@ const reporting = require('../lib/reporting');
|
|
|
2
2
|
const extend = require('../lib/extend');
|
|
3
3
|
const exposes = require('../lib/exposes');
|
|
4
4
|
const e = exposes.presets;
|
|
5
|
+
const fz = require('../converters/fromZigbee');
|
|
5
6
|
|
|
6
7
|
module.exports = [
|
|
8
|
+
{
|
|
9
|
+
zigbeeModel: ['ZGR904-S'],
|
|
10
|
+
model: 'ZGR904-S',
|
|
11
|
+
vendor: 'Envilar',
|
|
12
|
+
description: 'Envilar touchlink remote',
|
|
13
|
+
meta: {battery: {dontDividePercentage: true}},
|
|
14
|
+
fromZigbee: [fz.command_recall, fz.command_on, fz.command_off, fz.command_move, fz.command_stop, fz.battery],
|
|
15
|
+
toZigbee: [],
|
|
16
|
+
exposes: [e.battery(),
|
|
17
|
+
e.action(['recall_1', 'recall_2', 'on', 'off', 'brightness_stop', 'brightness_move_up', 'brightness_move_down'])],
|
|
18
|
+
},
|
|
7
19
|
{
|
|
8
20
|
zigbeeModel: ['ZG102-BOX-UNIDIM'],
|
|
9
21
|
model: 'ZG102-BOX-UNIDIM',
|
package/devices/evn.js
CHANGED
|
@@ -1,26 +1,31 @@
|
|
|
1
1
|
const exposes = require('../lib/exposes');
|
|
2
|
+
const extend = require('../lib/extend');
|
|
2
3
|
const fz = {...require('../converters/fromZigbee'), legacy: require('../lib/legacy').fromZigbee};
|
|
3
|
-
const reporting = require('../lib/reporting');
|
|
4
4
|
const e = exposes.presets;
|
|
5
5
|
|
|
6
6
|
module.exports = [
|
|
7
7
|
{
|
|
8
|
-
zigbeeModel: ['
|
|
8
|
+
zigbeeModel: ['ZBHS4RGBW'],
|
|
9
9
|
model: 'ZBHS4RGBW',
|
|
10
10
|
vendor: 'EVN',
|
|
11
11
|
description: 'Zigbee 4 channel RGBW remote control',
|
|
12
|
-
fromZigbee: [fz.battery, fz.
|
|
13
|
-
fz.
|
|
14
|
-
exposes: [e.battery(), e.action([
|
|
15
|
-
'
|
|
16
|
-
'
|
|
12
|
+
fromZigbee: [fz.battery, fz.command_move_to_color, fz.command_move_to_color_temp, fz.command_move_hue,
|
|
13
|
+
fz.command_step, fz.command_stop, fz.command_move, fz.command_recall, fz.command_on, fz.command_off],
|
|
14
|
+
exposes: [e.battery(), e.action([
|
|
15
|
+
'color_move', 'color_temperature_move', 'brightness_step_up', 'brightness_step_down',
|
|
16
|
+
'brightness_move_up', 'brightness_move_down', 'brightness_stop',
|
|
17
|
+
'hue_move', 'hue_stop', 'recall_*', 'on', 'off'])],
|
|
17
18
|
toZigbee: [],
|
|
18
19
|
meta: {multiEndpoint: true, battery: {dontDividePercentage: true}},
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genPowerCfg']);
|
|
22
|
-
await reporting.batteryVoltage(endpoint);
|
|
23
|
-
await reporting.batteryPercentageRemaining(endpoint);
|
|
20
|
+
endpoint: (device) => {
|
|
21
|
+
return {ep1: 1, ep2: 2, ep3: 3, ep4: 4};
|
|
24
22
|
},
|
|
25
23
|
},
|
|
24
|
+
{
|
|
25
|
+
zigbeeModel: ['ZB24100VS'],
|
|
26
|
+
model: 'ZB24100VS',
|
|
27
|
+
vendor: 'EVN',
|
|
28
|
+
description: 'Zigbee multicolor controller with power supply',
|
|
29
|
+
extend: extend.light_onoff_brightness_colortemp_color({supportsHS: true, colorTempRange: [160, 450]}),
|
|
30
|
+
},
|
|
26
31
|
];
|
package/devices/lidl.js
CHANGED
|
@@ -378,6 +378,15 @@ module.exports = [
|
|
|
378
378
|
await reporting.onOff(endpoint);
|
|
379
379
|
},
|
|
380
380
|
},
|
|
381
|
+
{
|
|
382
|
+
fingerprint: [{modelID: 'TS004F', manufacturerName: '_TZ3000_rco1yzb1'}],
|
|
383
|
+
model: 'HG08164',
|
|
384
|
+
vendor: 'Lidl',
|
|
385
|
+
description: 'Silvercrest smart button',
|
|
386
|
+
fromZigbee: [fz.command_on, fz.command_off, fz.command_step, fz.command_stop, fz.battery],
|
|
387
|
+
toZigbee: [],
|
|
388
|
+
exposes: [e.action(['on', 'off', 'brightness_stop', 'brightness_step_up', 'brightness_step_down']), e.battery()],
|
|
389
|
+
},
|
|
381
390
|
{
|
|
382
391
|
fingerprint: [{modelID: 'TS0211', manufacturerName: '_TZ1800_ladpngdx'}],
|
|
383
392
|
model: 'HG06668',
|
package/devices/niko.js
CHANGED
|
@@ -75,4 +75,20 @@ module.exports = [
|
|
|
75
75
|
},
|
|
76
76
|
exposes: [e.occupancy(), e.battery_low(), e.battery()],
|
|
77
77
|
},
|
|
78
|
+
{
|
|
79
|
+
zigbeeModel: ['Single connectable switch,10A'],
|
|
80
|
+
model: '552-72101',
|
|
81
|
+
vendor: 'Niko',
|
|
82
|
+
description: 'Single connectable switch',
|
|
83
|
+
fromZigbee: [fz.on_off],
|
|
84
|
+
toZigbee: [tz.on_off],
|
|
85
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
86
|
+
const endpoint = device.getEndpoint(1);
|
|
87
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
88
|
+
await reporting.onOff(endpoint);
|
|
89
|
+
},
|
|
90
|
+
exposes: [
|
|
91
|
+
e.switch(),
|
|
92
|
+
],
|
|
93
|
+
},
|
|
78
94
|
];
|
package/devices/philips.js
CHANGED
|
@@ -108,6 +108,15 @@ module.exports = [
|
|
|
108
108
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
109
109
|
ota: ota.zigbeeOTA,
|
|
110
110
|
},
|
|
111
|
+
{
|
|
112
|
+
zigbeeModel: ['915005997001', '915005997101'],
|
|
113
|
+
model: '915005997001',
|
|
114
|
+
vendor: 'Philips',
|
|
115
|
+
description: 'Hue white ambiance ceiling light Enrave XL with Bluetooth',
|
|
116
|
+
meta: {turnsOffAtBrightness1: true},
|
|
117
|
+
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
118
|
+
ota: ota.zigbeeOTA,
|
|
119
|
+
},
|
|
111
120
|
{
|
|
112
121
|
zigbeeModel: ['929003054001'],
|
|
113
122
|
model: '929003054001',
|
|
@@ -680,7 +680,7 @@ module.exports = [
|
|
|
680
680
|
},
|
|
681
681
|
{
|
|
682
682
|
zigbeeModel: ['CCT595011_AS'],
|
|
683
|
-
model: '
|
|
683
|
+
model: 'CCT595011',
|
|
684
684
|
vendor: 'Schneider Electric',
|
|
685
685
|
description: 'Wiser motion sensor',
|
|
686
686
|
fromZigbee: [fz.battery, fz.ias_enroll, fz.ias_occupancy_only_alarm_2, fz.illuminance],
|
package/devices/tuya.js
CHANGED
|
@@ -746,6 +746,31 @@ module.exports = [
|
|
|
746
746
|
} catch (error) {/* Fails for some: https://github.com/Koenkk/zigbee2mqtt/issues/6313 */}
|
|
747
747
|
},
|
|
748
748
|
},
|
|
749
|
+
{
|
|
750
|
+
fingerprint: [{modelID: 'TS011F', manufacturerName: '_TZ3000_3zofvcaa'}],
|
|
751
|
+
model: 'TS011F_2_gang_2_usb_wall',
|
|
752
|
+
vendor: 'TuYa',
|
|
753
|
+
description: '2 gang 2 usb wall outlet',
|
|
754
|
+
toZigbee: extend.switch().toZigbee.concat([tz.moes_power_on_behavior, tz.tuya_backlight_mode]),
|
|
755
|
+
fromZigbee: extend.switch().fromZigbee.concat([fz.moes_power_on_behavior, fz.tuya_backlight_mode]),
|
|
756
|
+
exposes: [e.switch().withEndpoint('l1'), e.switch().withEndpoint('l2'), e.switch().withEndpoint('l3'),
|
|
757
|
+
e.switch().withEndpoint('l4'), exposes.enum('power_on_behavior', ea.ALL, ['on', 'off', 'previous']),
|
|
758
|
+
exposes.enum('backlight_mode', ea.ALL, ['LOW', 'MEDIUM', 'HIGH']),
|
|
759
|
+
],
|
|
760
|
+
endpoint: () => {
|
|
761
|
+
return {'l1': 1, 'l2': 2, 'l3': 3, 'l4': 4};
|
|
762
|
+
},
|
|
763
|
+
meta: {multiEndpoint: true},
|
|
764
|
+
configure: async (device, coordinatorEndpoint) => {
|
|
765
|
+
await device.getEndpoint(1).read('genBasic',
|
|
766
|
+
['manufacturerName', 'zclVersion', 'appVersion', 'modelId', 'powerSource', 0xfffe]);
|
|
767
|
+
for (const endpointID of [1, 2, 3, 4]) {
|
|
768
|
+
const endpoint = device.getEndpoint(endpointID);
|
|
769
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
770
|
+
await reporting.onOff(endpoint);
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
},
|
|
749
774
|
{
|
|
750
775
|
zigbeeModel: ['TS0042'],
|
|
751
776
|
model: 'TS0042',
|
|
@@ -1297,7 +1322,7 @@ module.exports = [
|
|
|
1297
1322
|
description: 'Smart plug (with power monitoring)',
|
|
1298
1323
|
vendor: 'TuYa',
|
|
1299
1324
|
whiteLabel: [{vendor: 'LELLKI', model: 'TS011F_plug'}, {vendor: 'NEO', model: 'NAS-WR01B'},
|
|
1300
|
-
{vendor: 'BlitzWolf', model: 'BW-SHP15'}, {vendor: 'Nous', model: 'A1Z'}],
|
|
1325
|
+
{vendor: 'BlitzWolf', model: 'BW-SHP15'}, {vendor: 'Nous', model: 'A1Z'}, {vendor: 'BlitzWolf', model: 'BW-SHP13'}],
|
|
1301
1326
|
ota: ota.zigbeeOTA,
|
|
1302
1327
|
fromZigbee: [fz.on_off, fz.electrical_measurement, fz.metering, fz.ignore_basic_report, fz.tuya_switch_power_outage_memory,
|
|
1303
1328
|
fz.ts011f_plug_indicator_mode, fz.ts011f_plug_child_mode],
|
package/devices/xiaomi.js
CHANGED
|
@@ -1236,7 +1236,7 @@ module.exports = [
|
|
|
1236
1236
|
model: 'ZNCLDJ11LM',
|
|
1237
1237
|
description: 'Aqara curtain motor',
|
|
1238
1238
|
vendor: 'Xiaomi',
|
|
1239
|
-
fromZigbee: [fz.xiaomi_basic, fz.xiaomi_curtain_position, fz.
|
|
1239
|
+
fromZigbee: [fz.xiaomi_basic, fz.xiaomi_curtain_position, fz.xiaomi_curtain_position_tilt],
|
|
1240
1240
|
toZigbee: [tz.xiaomi_curtain_position_state, tz.xiaomi_curtain_options],
|
|
1241
1241
|
exposes: [e.cover_position().setAccess('state', ea.ALL),
|
|
1242
1242
|
exposes.binary('running', ea.STATE, true, false)
|
|
@@ -1250,7 +1250,7 @@ module.exports = [
|
|
|
1250
1250
|
model: 'SRSC-M01',
|
|
1251
1251
|
description: 'Aqara roller shade motor',
|
|
1252
1252
|
vendor: 'Xiaomi',
|
|
1253
|
-
fromZigbee: [fz.xiaomi_basic, fz.xiaomi_curtain_position, fz.
|
|
1253
|
+
fromZigbee: [fz.xiaomi_basic, fz.xiaomi_curtain_position, fz.xiaomi_curtain_position_tilt],
|
|
1254
1254
|
toZigbee: [tz.xiaomi_curtain_position_state, tz.xiaomi_curtain_options],
|
|
1255
1255
|
exposes: [e.cover_position().setAccess('state', ea.ALL),
|
|
1256
1256
|
exposes.binary('running', ea.STATE, true, false)
|
|
@@ -1262,7 +1262,7 @@ module.exports = [
|
|
|
1262
1262
|
model: 'ZNCLDJ12LM',
|
|
1263
1263
|
vendor: 'Xiaomi',
|
|
1264
1264
|
description: 'Aqara B1 curtain motor',
|
|
1265
|
-
fromZigbee: [fz.xiaomi_basic, fz.xiaomi_curtain_position, fz.battery, fz.
|
|
1265
|
+
fromZigbee: [fz.xiaomi_basic, fz.xiaomi_curtain_position, fz.battery, fz.xiaomi_curtain_position_tilt],
|
|
1266
1266
|
toZigbee: [tz.xiaomi_curtain_position_state, tz.xiaomi_curtain_options],
|
|
1267
1267
|
onEvent: async (type, data, device) => {
|
|
1268
1268
|
// The position (genAnalogOutput.presentValue) reported via an attribute contains an invaid value
|
|
@@ -1286,8 +1286,8 @@ module.exports = [
|
|
|
1286
1286
|
model: 'ZNJLBL01LM',
|
|
1287
1287
|
description: 'Aqara roller shade companion E1',
|
|
1288
1288
|
vendor: 'Xiaomi',
|
|
1289
|
-
fromZigbee: [fz.xiaomi_curtain_acn002_position, fz.xiaomi_curtain_acn002_status, fz.
|
|
1290
|
-
fz.aqara_opple],
|
|
1289
|
+
fromZigbee: [fz.xiaomi_curtain_acn002_position, fz.xiaomi_curtain_acn002_status, fz.xiaomi_curtain_position_tilt,
|
|
1290
|
+
fz.ignore_basic_report, fz.aqara_opple],
|
|
1291
1291
|
toZigbee: [tz.xiaomi_curtain_position_state, tz.xiaomi_curtain_acn002_battery, tz.xiaomi_curtain_acn002_charging_status],
|
|
1292
1292
|
exposes: [e.cover_position().setAccess('state', ea.ALL), e.battery().withAccess(ea.STATE_GET),
|
|
1293
1293
|
exposes.binary('charging_status', ea.STATE_GET, true, false)
|
package/lib/tuya.js
CHANGED
|
@@ -164,7 +164,7 @@ function convertStringToHexArray(value) {
|
|
|
164
164
|
// Default is 100 = open, 0 = closed; Devices listed here will use 0 = open, 100 = closed instead
|
|
165
165
|
// Use manufacturerName to identify device!
|
|
166
166
|
// Dont' invert _TZE200_cowvfni3: https://github.com/Koenkk/zigbee2mqtt/issues/6043
|
|
167
|
-
const coverPositionInvert = ['_TZE200_wmcdj3aq', '_TZE200_nogaemzt', '_TZE200_xuzcvlku', '_TZE200_xaabybja'];
|
|
167
|
+
const coverPositionInvert = ['_TZE200_wmcdj3aq', '_TZE200_nogaemzt', '_TZE200_xuzcvlku', '_TZE200_xaabybja', '_TZE200_rmymn92d'];
|
|
168
168
|
|
|
169
169
|
// Gets a boolean indicating whether the cover by this manufacturerName needs reversed positions
|
|
170
170
|
function isCoverInverted(manufacturerName) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zigbee-herdsman-converters",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.464",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "zigbee-herdsman-converters",
|
|
9
|
-
"version": "14.0.
|
|
9
|
+
"version": "14.0.464",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"axios": "^0.26.1",
|
|
@@ -1037,9 +1037,9 @@
|
|
|
1037
1037
|
}
|
|
1038
1038
|
},
|
|
1039
1039
|
"node_modules/@types/babel__core": {
|
|
1040
|
-
"version": "7.1.
|
|
1041
|
-
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.
|
|
1042
|
-
"integrity": "sha512-
|
|
1040
|
+
"version": "7.1.19",
|
|
1041
|
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz",
|
|
1042
|
+
"integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==",
|
|
1043
1043
|
"dev": true,
|
|
1044
1044
|
"dependencies": {
|
|
1045
1045
|
"@babel/parser": "^7.1.0",
|
|
@@ -1111,15 +1111,15 @@
|
|
|
1111
1111
|
}
|
|
1112
1112
|
},
|
|
1113
1113
|
"node_modules/@types/json-schema": {
|
|
1114
|
-
"version": "7.0.
|
|
1115
|
-
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.
|
|
1116
|
-
"integrity": "sha512-
|
|
1114
|
+
"version": "7.0.11",
|
|
1115
|
+
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
|
|
1116
|
+
"integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==",
|
|
1117
1117
|
"dev": true
|
|
1118
1118
|
},
|
|
1119
1119
|
"node_modules/@types/node": {
|
|
1120
|
-
"version": "17.0.
|
|
1121
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.
|
|
1122
|
-
"integrity": "sha512-
|
|
1120
|
+
"version": "17.0.23",
|
|
1121
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz",
|
|
1122
|
+
"integrity": "sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==",
|
|
1123
1123
|
"dev": true
|
|
1124
1124
|
},
|
|
1125
1125
|
"node_modules/@types/prettier": {
|
|
@@ -1150,13 +1150,13 @@
|
|
|
1150
1150
|
"dev": true
|
|
1151
1151
|
},
|
|
1152
1152
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
1153
|
-
"version": "5.
|
|
1154
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.
|
|
1155
|
-
"integrity": "sha512-
|
|
1153
|
+
"version": "5.16.0",
|
|
1154
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.16.0.tgz",
|
|
1155
|
+
"integrity": "sha512-P+Yab2Hovg8NekLIR/mOElCDPyGgFZKhGoZA901Yax6WR6HVeGLbsqJkZ+Cvk5nts/dAlFKm8PfL43UZnWdpIQ==",
|
|
1156
1156
|
"dev": true,
|
|
1157
1157
|
"dependencies": {
|
|
1158
|
-
"@typescript-eslint/types": "5.
|
|
1159
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
1158
|
+
"@typescript-eslint/types": "5.16.0",
|
|
1159
|
+
"@typescript-eslint/visitor-keys": "5.16.0"
|
|
1160
1160
|
},
|
|
1161
1161
|
"engines": {
|
|
1162
1162
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -1167,9 +1167,9 @@
|
|
|
1167
1167
|
}
|
|
1168
1168
|
},
|
|
1169
1169
|
"node_modules/@typescript-eslint/types": {
|
|
1170
|
-
"version": "5.
|
|
1171
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.
|
|
1172
|
-
"integrity": "sha512-
|
|
1170
|
+
"version": "5.16.0",
|
|
1171
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.16.0.tgz",
|
|
1172
|
+
"integrity": "sha512-oUorOwLj/3/3p/HFwrp6m/J2VfbLC8gjW5X3awpQJ/bSG+YRGFS4dpsvtQ8T2VNveV+LflQHjlLvB6v0R87z4g==",
|
|
1173
1173
|
"dev": true,
|
|
1174
1174
|
"engines": {
|
|
1175
1175
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -1180,13 +1180,13 @@
|
|
|
1180
1180
|
}
|
|
1181
1181
|
},
|
|
1182
1182
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
1183
|
-
"version": "5.
|
|
1184
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.
|
|
1185
|
-
"integrity": "sha512-
|
|
1183
|
+
"version": "5.16.0",
|
|
1184
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.16.0.tgz",
|
|
1185
|
+
"integrity": "sha512-SE4VfbLWUZl9MR+ngLSARptUv2E8brY0luCdgmUevU6arZRY/KxYoLI/3V/yxaURR8tLRN7bmZtJdgmzLHI6pQ==",
|
|
1186
1186
|
"dev": true,
|
|
1187
1187
|
"dependencies": {
|
|
1188
|
-
"@typescript-eslint/types": "5.
|
|
1189
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
1188
|
+
"@typescript-eslint/types": "5.16.0",
|
|
1189
|
+
"@typescript-eslint/visitor-keys": "5.16.0",
|
|
1190
1190
|
"debug": "^4.3.2",
|
|
1191
1191
|
"globby": "^11.0.4",
|
|
1192
1192
|
"is-glob": "^4.0.3",
|
|
@@ -1207,15 +1207,15 @@
|
|
|
1207
1207
|
}
|
|
1208
1208
|
},
|
|
1209
1209
|
"node_modules/@typescript-eslint/utils": {
|
|
1210
|
-
"version": "5.
|
|
1211
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.
|
|
1212
|
-
"integrity": "sha512-
|
|
1210
|
+
"version": "5.16.0",
|
|
1211
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.16.0.tgz",
|
|
1212
|
+
"integrity": "sha512-iYej2ER6AwmejLWMWzJIHy3nPJeGDuCqf8Jnb+jAQVoPpmWzwQOfa9hWVB8GIQE5gsCv/rfN4T+AYb/V06WseQ==",
|
|
1213
1213
|
"dev": true,
|
|
1214
1214
|
"dependencies": {
|
|
1215
1215
|
"@types/json-schema": "^7.0.9",
|
|
1216
|
-
"@typescript-eslint/scope-manager": "5.
|
|
1217
|
-
"@typescript-eslint/types": "5.
|
|
1218
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
1216
|
+
"@typescript-eslint/scope-manager": "5.16.0",
|
|
1217
|
+
"@typescript-eslint/types": "5.16.0",
|
|
1218
|
+
"@typescript-eslint/typescript-estree": "5.16.0",
|
|
1219
1219
|
"eslint-scope": "^5.1.1",
|
|
1220
1220
|
"eslint-utils": "^3.0.0"
|
|
1221
1221
|
},
|
|
@@ -1253,12 +1253,12 @@
|
|
|
1253
1253
|
}
|
|
1254
1254
|
},
|
|
1255
1255
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
1256
|
-
"version": "5.
|
|
1257
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.
|
|
1258
|
-
"integrity": "sha512
|
|
1256
|
+
"version": "5.16.0",
|
|
1257
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.16.0.tgz",
|
|
1258
|
+
"integrity": "sha512-jqxO8msp5vZDhikTwq9ubyMHqZ67UIvawohr4qF3KhlpL7gzSjOd+8471H3nh5LyABkaI85laEKKU8SnGUK5/g==",
|
|
1259
1259
|
"dev": true,
|
|
1260
1260
|
"dependencies": {
|
|
1261
|
-
"@typescript-eslint/types": "5.
|
|
1261
|
+
"@typescript-eslint/types": "5.16.0",
|
|
1262
1262
|
"eslint-visitor-keys": "^3.0.0"
|
|
1263
1263
|
},
|
|
1264
1264
|
"engines": {
|
|
@@ -1696,9 +1696,9 @@
|
|
|
1696
1696
|
}
|
|
1697
1697
|
},
|
|
1698
1698
|
"node_modules/caniuse-lite": {
|
|
1699
|
-
"version": "1.0.
|
|
1700
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
1701
|
-
"integrity": "sha512-
|
|
1699
|
+
"version": "1.0.30001320",
|
|
1700
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001320.tgz",
|
|
1701
|
+
"integrity": "sha512-MWPzG54AGdo3nWx7zHZTefseM5Y1ccM7hlQKHRqJkPozUaw3hNbBTMmLn16GG2FUzjR13Cr3NPfhIieX5PzXDA==",
|
|
1702
1702
|
"dev": true,
|
|
1703
1703
|
"funding": [
|
|
1704
1704
|
{
|
|
@@ -1988,9 +1988,9 @@
|
|
|
1988
1988
|
}
|
|
1989
1989
|
},
|
|
1990
1990
|
"node_modules/electron-to-chromium": {
|
|
1991
|
-
"version": "1.4.
|
|
1992
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.
|
|
1993
|
-
"integrity": "sha512-
|
|
1991
|
+
"version": "1.4.95",
|
|
1992
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.95.tgz",
|
|
1993
|
+
"integrity": "sha512-h2VAMV/hPtmAeiDkwA8c5sjS+cWt6GlQL4ERdrOUWu7cRIG5IRk9uwR9f0utP+hPJ9ZZsADTq9HpbuT46eBYAg==",
|
|
1994
1994
|
"dev": true
|
|
1995
1995
|
},
|
|
1996
1996
|
"node_modules/emittery": {
|
|
@@ -2123,9 +2123,9 @@
|
|
|
2123
2123
|
}
|
|
2124
2124
|
},
|
|
2125
2125
|
"node_modules/eslint": {
|
|
2126
|
-
"version": "8.
|
|
2127
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
2128
|
-
"integrity": "sha512
|
|
2126
|
+
"version": "8.12.0",
|
|
2127
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.12.0.tgz",
|
|
2128
|
+
"integrity": "sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==",
|
|
2129
2129
|
"dev": true,
|
|
2130
2130
|
"dependencies": {
|
|
2131
2131
|
"@eslint/eslintrc": "^1.2.1",
|
|
@@ -2187,15 +2187,15 @@
|
|
|
2187
2187
|
}
|
|
2188
2188
|
},
|
|
2189
2189
|
"node_modules/eslint-plugin-jest": {
|
|
2190
|
-
"version": "26.1.
|
|
2191
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.1.
|
|
2192
|
-
"integrity": "sha512-
|
|
2190
|
+
"version": "26.1.3",
|
|
2191
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.1.3.tgz",
|
|
2192
|
+
"integrity": "sha512-Pju+T7MFpo5VFhFlwrkK/9jRUu18r2iugvgyrWOnnGRaVTFFmFXp+xFJpHyqmjjLmGJPKLeEFLVTAxezkApcpQ==",
|
|
2193
2193
|
"dev": true,
|
|
2194
2194
|
"dependencies": {
|
|
2195
2195
|
"@typescript-eslint/utils": "^5.10.0"
|
|
2196
2196
|
},
|
|
2197
2197
|
"engines": {
|
|
2198
|
-
"node": "^12.
|
|
2198
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
2199
2199
|
},
|
|
2200
2200
|
"peerDependencies": {
|
|
2201
2201
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
@@ -3728,13 +3728,10 @@
|
|
|
3728
3728
|
"dev": true
|
|
3729
3729
|
},
|
|
3730
3730
|
"node_modules/json5": {
|
|
3731
|
-
"version": "2.2.
|
|
3732
|
-
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.
|
|
3733
|
-
"integrity": "sha512-
|
|
3731
|
+
"version": "2.2.1",
|
|
3732
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
|
|
3733
|
+
"integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
|
|
3734
3734
|
"dev": true,
|
|
3735
|
-
"dependencies": {
|
|
3736
|
-
"minimist": "^1.2.5"
|
|
3737
|
-
},
|
|
3738
3735
|
"bin": {
|
|
3739
3736
|
"json5": "lib/cli.js"
|
|
3740
3737
|
},
|
|
@@ -3864,13 +3861,13 @@
|
|
|
3864
3861
|
}
|
|
3865
3862
|
},
|
|
3866
3863
|
"node_modules/micromatch": {
|
|
3867
|
-
"version": "4.0.
|
|
3868
|
-
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.
|
|
3869
|
-
"integrity": "sha512-
|
|
3864
|
+
"version": "4.0.5",
|
|
3865
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
|
|
3866
|
+
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
|
|
3870
3867
|
"dev": true,
|
|
3871
3868
|
"dependencies": {
|
|
3872
|
-
"braces": "^3.0.
|
|
3873
|
-
"picomatch": "^2.
|
|
3869
|
+
"braces": "^3.0.2",
|
|
3870
|
+
"picomatch": "^2.3.1"
|
|
3874
3871
|
},
|
|
3875
3872
|
"engines": {
|
|
3876
3873
|
"node": ">=8.6"
|
|
@@ -3918,12 +3915,6 @@
|
|
|
3918
3915
|
"node": "*"
|
|
3919
3916
|
}
|
|
3920
3917
|
},
|
|
3921
|
-
"node_modules/minimist": {
|
|
3922
|
-
"version": "1.2.5",
|
|
3923
|
-
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
|
|
3924
|
-
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
|
|
3925
|
-
"dev": true
|
|
3926
|
-
},
|
|
3927
3918
|
"node_modules/ms": {
|
|
3928
3919
|
"version": "2.1.2",
|
|
3929
3920
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
|
@@ -4834,9 +4825,9 @@
|
|
|
4834
4825
|
}
|
|
4835
4826
|
},
|
|
4836
4827
|
"node_modules/typescript": {
|
|
4837
|
-
"version": "4.6.
|
|
4838
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.
|
|
4839
|
-
"integrity": "sha512-
|
|
4828
|
+
"version": "4.6.3",
|
|
4829
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz",
|
|
4830
|
+
"integrity": "sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==",
|
|
4840
4831
|
"dev": true,
|
|
4841
4832
|
"peer": true,
|
|
4842
4833
|
"bin": {
|
|
@@ -12722,9 +12713,9 @@
|
|
|
12722
12713
|
"dev": true
|
|
12723
12714
|
},
|
|
12724
12715
|
"@types/babel__core": {
|
|
12725
|
-
"version": "7.1.
|
|
12726
|
-
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.
|
|
12727
|
-
"integrity": "sha512-
|
|
12716
|
+
"version": "7.1.19",
|
|
12717
|
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz",
|
|
12718
|
+
"integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==",
|
|
12728
12719
|
"dev": true,
|
|
12729
12720
|
"requires": {
|
|
12730
12721
|
"@babel/parser": "^7.1.0",
|
|
@@ -12796,15 +12787,15 @@
|
|
|
12796
12787
|
}
|
|
12797
12788
|
},
|
|
12798
12789
|
"@types/json-schema": {
|
|
12799
|
-
"version": "7.0.
|
|
12800
|
-
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.
|
|
12801
|
-
"integrity": "sha512-
|
|
12790
|
+
"version": "7.0.11",
|
|
12791
|
+
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
|
|
12792
|
+
"integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==",
|
|
12802
12793
|
"dev": true
|
|
12803
12794
|
},
|
|
12804
12795
|
"@types/node": {
|
|
12805
|
-
"version": "17.0.
|
|
12806
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.
|
|
12807
|
-
"integrity": "sha512-
|
|
12796
|
+
"version": "17.0.23",
|
|
12797
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz",
|
|
12798
|
+
"integrity": "sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==",
|
|
12808
12799
|
"dev": true
|
|
12809
12800
|
},
|
|
12810
12801
|
"@types/prettier": {
|
|
@@ -12835,29 +12826,29 @@
|
|
|
12835
12826
|
"dev": true
|
|
12836
12827
|
},
|
|
12837
12828
|
"@typescript-eslint/scope-manager": {
|
|
12838
|
-
"version": "5.
|
|
12839
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.
|
|
12840
|
-
"integrity": "sha512-
|
|
12829
|
+
"version": "5.16.0",
|
|
12830
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.16.0.tgz",
|
|
12831
|
+
"integrity": "sha512-P+Yab2Hovg8NekLIR/mOElCDPyGgFZKhGoZA901Yax6WR6HVeGLbsqJkZ+Cvk5nts/dAlFKm8PfL43UZnWdpIQ==",
|
|
12841
12832
|
"dev": true,
|
|
12842
12833
|
"requires": {
|
|
12843
|
-
"@typescript-eslint/types": "5.
|
|
12844
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
12834
|
+
"@typescript-eslint/types": "5.16.0",
|
|
12835
|
+
"@typescript-eslint/visitor-keys": "5.16.0"
|
|
12845
12836
|
}
|
|
12846
12837
|
},
|
|
12847
12838
|
"@typescript-eslint/types": {
|
|
12848
|
-
"version": "5.
|
|
12849
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.
|
|
12850
|
-
"integrity": "sha512-
|
|
12839
|
+
"version": "5.16.0",
|
|
12840
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.16.0.tgz",
|
|
12841
|
+
"integrity": "sha512-oUorOwLj/3/3p/HFwrp6m/J2VfbLC8gjW5X3awpQJ/bSG+YRGFS4dpsvtQ8T2VNveV+LflQHjlLvB6v0R87z4g==",
|
|
12851
12842
|
"dev": true
|
|
12852
12843
|
},
|
|
12853
12844
|
"@typescript-eslint/typescript-estree": {
|
|
12854
|
-
"version": "5.
|
|
12855
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.
|
|
12856
|
-
"integrity": "sha512-
|
|
12845
|
+
"version": "5.16.0",
|
|
12846
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.16.0.tgz",
|
|
12847
|
+
"integrity": "sha512-SE4VfbLWUZl9MR+ngLSARptUv2E8brY0luCdgmUevU6arZRY/KxYoLI/3V/yxaURR8tLRN7bmZtJdgmzLHI6pQ==",
|
|
12857
12848
|
"dev": true,
|
|
12858
12849
|
"requires": {
|
|
12859
|
-
"@typescript-eslint/types": "5.
|
|
12860
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
12850
|
+
"@typescript-eslint/types": "5.16.0",
|
|
12851
|
+
"@typescript-eslint/visitor-keys": "5.16.0",
|
|
12861
12852
|
"debug": "^4.3.2",
|
|
12862
12853
|
"globby": "^11.0.4",
|
|
12863
12854
|
"is-glob": "^4.0.3",
|
|
@@ -12866,15 +12857,15 @@
|
|
|
12866
12857
|
}
|
|
12867
12858
|
},
|
|
12868
12859
|
"@typescript-eslint/utils": {
|
|
12869
|
-
"version": "5.
|
|
12870
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.
|
|
12871
|
-
"integrity": "sha512-
|
|
12860
|
+
"version": "5.16.0",
|
|
12861
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.16.0.tgz",
|
|
12862
|
+
"integrity": "sha512-iYej2ER6AwmejLWMWzJIHy3nPJeGDuCqf8Jnb+jAQVoPpmWzwQOfa9hWVB8GIQE5gsCv/rfN4T+AYb/V06WseQ==",
|
|
12872
12863
|
"dev": true,
|
|
12873
12864
|
"requires": {
|
|
12874
12865
|
"@types/json-schema": "^7.0.9",
|
|
12875
|
-
"@typescript-eslint/scope-manager": "5.
|
|
12876
|
-
"@typescript-eslint/types": "5.
|
|
12877
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
12866
|
+
"@typescript-eslint/scope-manager": "5.16.0",
|
|
12867
|
+
"@typescript-eslint/types": "5.16.0",
|
|
12868
|
+
"@typescript-eslint/typescript-estree": "5.16.0",
|
|
12878
12869
|
"eslint-scope": "^5.1.1",
|
|
12879
12870
|
"eslint-utils": "^3.0.0"
|
|
12880
12871
|
},
|
|
@@ -12898,12 +12889,12 @@
|
|
|
12898
12889
|
}
|
|
12899
12890
|
},
|
|
12900
12891
|
"@typescript-eslint/visitor-keys": {
|
|
12901
|
-
"version": "5.
|
|
12902
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.
|
|
12903
|
-
"integrity": "sha512
|
|
12892
|
+
"version": "5.16.0",
|
|
12893
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.16.0.tgz",
|
|
12894
|
+
"integrity": "sha512-jqxO8msp5vZDhikTwq9ubyMHqZ67UIvawohr4qF3KhlpL7gzSjOd+8471H3nh5LyABkaI85laEKKU8SnGUK5/g==",
|
|
12904
12895
|
"dev": true,
|
|
12905
12896
|
"requires": {
|
|
12906
|
-
"@typescript-eslint/types": "5.
|
|
12897
|
+
"@typescript-eslint/types": "5.16.0",
|
|
12907
12898
|
"eslint-visitor-keys": "^3.0.0"
|
|
12908
12899
|
}
|
|
12909
12900
|
},
|
|
@@ -13210,9 +13201,9 @@
|
|
|
13210
13201
|
"dev": true
|
|
13211
13202
|
},
|
|
13212
13203
|
"caniuse-lite": {
|
|
13213
|
-
"version": "1.0.
|
|
13214
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
13215
|
-
"integrity": "sha512-
|
|
13204
|
+
"version": "1.0.30001320",
|
|
13205
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001320.tgz",
|
|
13206
|
+
"integrity": "sha512-MWPzG54AGdo3nWx7zHZTefseM5Y1ccM7hlQKHRqJkPozUaw3hNbBTMmLn16GG2FUzjR13Cr3NPfhIieX5PzXDA==",
|
|
13216
13207
|
"dev": true
|
|
13217
13208
|
},
|
|
13218
13209
|
"chalk": {
|
|
@@ -13436,9 +13427,9 @@
|
|
|
13436
13427
|
}
|
|
13437
13428
|
},
|
|
13438
13429
|
"electron-to-chromium": {
|
|
13439
|
-
"version": "1.4.
|
|
13440
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.
|
|
13441
|
-
"integrity": "sha512-
|
|
13430
|
+
"version": "1.4.95",
|
|
13431
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.95.tgz",
|
|
13432
|
+
"integrity": "sha512-h2VAMV/hPtmAeiDkwA8c5sjS+cWt6GlQL4ERdrOUWu7cRIG5IRk9uwR9f0utP+hPJ9ZZsADTq9HpbuT46eBYAg==",
|
|
13442
13433
|
"dev": true
|
|
13443
13434
|
},
|
|
13444
13435
|
"emittery": {
|
|
@@ -13537,9 +13528,9 @@
|
|
|
13537
13528
|
}
|
|
13538
13529
|
},
|
|
13539
13530
|
"eslint": {
|
|
13540
|
-
"version": "8.
|
|
13541
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
13542
|
-
"integrity": "sha512
|
|
13531
|
+
"version": "8.12.0",
|
|
13532
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.12.0.tgz",
|
|
13533
|
+
"integrity": "sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==",
|
|
13543
13534
|
"dev": true,
|
|
13544
13535
|
"requires": {
|
|
13545
13536
|
"@eslint/eslintrc": "^1.2.1",
|
|
@@ -13587,9 +13578,9 @@
|
|
|
13587
13578
|
"requires": {}
|
|
13588
13579
|
},
|
|
13589
13580
|
"eslint-plugin-jest": {
|
|
13590
|
-
"version": "26.1.
|
|
13591
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.1.
|
|
13592
|
-
"integrity": "sha512-
|
|
13581
|
+
"version": "26.1.3",
|
|
13582
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.1.3.tgz",
|
|
13583
|
+
"integrity": "sha512-Pju+T7MFpo5VFhFlwrkK/9jRUu18r2iugvgyrWOnnGRaVTFFmFXp+xFJpHyqmjjLmGJPKLeEFLVTAxezkApcpQ==",
|
|
13593
13584
|
"dev": true,
|
|
13594
13585
|
"requires": {
|
|
13595
13586
|
"@typescript-eslint/utils": "^5.10.0"
|
|
@@ -14737,13 +14728,10 @@
|
|
|
14737
14728
|
"dev": true
|
|
14738
14729
|
},
|
|
14739
14730
|
"json5": {
|
|
14740
|
-
"version": "2.2.
|
|
14741
|
-
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.
|
|
14742
|
-
"integrity": "sha512-
|
|
14743
|
-
"dev": true
|
|
14744
|
-
"requires": {
|
|
14745
|
-
"minimist": "^1.2.5"
|
|
14746
|
-
}
|
|
14731
|
+
"version": "2.2.1",
|
|
14732
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
|
|
14733
|
+
"integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
|
|
14734
|
+
"dev": true
|
|
14747
14735
|
},
|
|
14748
14736
|
"kleur": {
|
|
14749
14737
|
"version": "3.0.3",
|
|
@@ -14842,13 +14830,13 @@
|
|
|
14842
14830
|
"dev": true
|
|
14843
14831
|
},
|
|
14844
14832
|
"micromatch": {
|
|
14845
|
-
"version": "4.0.
|
|
14846
|
-
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.
|
|
14847
|
-
"integrity": "sha512-
|
|
14833
|
+
"version": "4.0.5",
|
|
14834
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
|
|
14835
|
+
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
|
|
14848
14836
|
"dev": true,
|
|
14849
14837
|
"requires": {
|
|
14850
|
-
"braces": "^3.0.
|
|
14851
|
-
"picomatch": "^2.
|
|
14838
|
+
"braces": "^3.0.2",
|
|
14839
|
+
"picomatch": "^2.3.1"
|
|
14852
14840
|
}
|
|
14853
14841
|
},
|
|
14854
14842
|
"mime-db": {
|
|
@@ -14881,12 +14869,6 @@
|
|
|
14881
14869
|
"brace-expansion": "^1.1.7"
|
|
14882
14870
|
}
|
|
14883
14871
|
},
|
|
14884
|
-
"minimist": {
|
|
14885
|
-
"version": "1.2.5",
|
|
14886
|
-
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
|
|
14887
|
-
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
|
|
14888
|
-
"dev": true
|
|
14889
|
-
},
|
|
14890
14872
|
"ms": {
|
|
14891
14873
|
"version": "2.1.2",
|
|
14892
14874
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
|
@@ -15543,9 +15525,9 @@
|
|
|
15543
15525
|
}
|
|
15544
15526
|
},
|
|
15545
15527
|
"typescript": {
|
|
15546
|
-
"version": "4.6.
|
|
15547
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.
|
|
15548
|
-
"integrity": "sha512-
|
|
15528
|
+
"version": "4.6.3",
|
|
15529
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz",
|
|
15530
|
+
"integrity": "sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==",
|
|
15549
15531
|
"dev": true,
|
|
15550
15532
|
"peer": true
|
|
15551
15533
|
},
|