homebridge-melcloud-control 4.6.1-beta.7 → 4.6.1-beta.9

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.
Files changed (2) hide show
  1. package/config.schema.json +118 -123
  2. package/package.json +1 -1
@@ -2369,153 +2369,148 @@
2369
2369
  "title": "Air Conditioner",
2370
2370
  "items": [
2371
2371
  {
2372
- "key": "accounts[].ataDevices[]",
2372
+ "key": "accounts[].ataDevices",
2373
2373
  "type": "tabarray",
2374
2374
  "title": "{{ value.name || 'Air Conditioner' }}",
2375
2375
  "items": [
2376
2376
  {
2377
- "key": "accounts[].ataDevices[]",
2377
+ "key": "accounts[].ataDevices[].id",
2378
+ "readonly": true
2379
+ },
2380
+ "accounts[].ataDevices[].displayType",
2381
+ {
2382
+ "title": "Settings",
2383
+ "type": "section",
2384
+ "description": "Section for setup device settings",
2385
+ "expandable": true,
2386
+ "expanded": false,
2387
+ "items": [
2388
+ "accounts[].ataDevices[].name",
2389
+ "accounts[].ataDevices[].heatDryFanMode",
2390
+ "accounts[].ataDevices[].coolDryFanMode",
2391
+ "accounts[].ataDevices[].autoDryFanMode"
2392
+ ]
2393
+ },
2394
+ {
2395
+ "title": "Presets",
2396
+ "type": "section",
2397
+ "description": "Section for setup device presets",
2398
+ "expandable": true,
2399
+ "expanded": false,
2378
2400
  "items": [
2379
2401
  {
2380
- "key": "accounts[].ataDevices[].id",
2381
- "readonly": true
2382
- },
2383
- "accounts[].ataDevices[].displayType",
2402
+ "key": "accounts[].ataDevices[].presets",
2403
+ "type": "tabarray",
2404
+ "title": "{{ value.name || 'Preset' }}",
2405
+ "items": [
2406
+ {
2407
+ "key": "accounts[].ataDevices[].presets[].id",
2408
+ "readonly": true
2409
+ },
2410
+ "accounts[].ataDevices[].presets[].displayType",
2411
+ "accounts[].ataDevices[].presets[].name",
2412
+ "accounts[].ataDevices[].presets[].namePrefix"
2413
+ ]
2414
+ }
2415
+ ],
2416
+ "condition": {
2417
+ "functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloud';"
2418
+ }
2419
+ },
2420
+ {
2421
+ "title": "Scenes",
2422
+ "type": "section",
2423
+ "description": "Section for setup device scenes",
2424
+ "expandable": true,
2425
+ "expanded": false,
2426
+ "items": [
2384
2427
  {
2385
- "title": "Settings",
2386
- "type": "section",
2387
- "description": "Section for setup device settings",
2388
- "expandable": true,
2389
- "expanded": false,
2428
+ "key": "accounts[].ataDevices[].scenes",
2429
+ "type": "tabarray",
2430
+ "title": "{{ value.name || 'Scene' }}",
2390
2431
  "items": [
2391
- "accounts[].ataDevices[].name",
2392
- "accounts[].ataDevices[].heatDryFanMode",
2393
- "accounts[].ataDevices[].coolDryFanMode",
2394
- "accounts[].ataDevices[].autoDryFanMode"
2432
+ {
2433
+ "key": "accounts[].ataDevices[].scenes[].id",
2434
+ "readonly": true
2435
+ },
2436
+ "accounts[].ataDevices[].scenes[].displayType",
2437
+ "accounts[].ataDevices[].scenes[].name",
2438
+ "accounts[].ataDevices[].scenes[].namePrefix"
2395
2439
  ]
2396
- },
2440
+ }
2441
+ ],
2442
+ "condition": {
2443
+ "functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloudhome';"
2444
+ }
2445
+ },
2446
+ {
2447
+ "title": "Schedules",
2448
+ "type": "section",
2449
+ "description": "Section for setup device schedules",
2450
+ "expandable": true,
2451
+ "expanded": false,
2452
+ "items": [
2397
2453
  {
2398
- "title": "Presets",
2399
- "type": "section",
2400
- "description": "Section for setup device presets",
2401
- "expandable": true,
2402
- "expanded": false,
2454
+ "key": "accounts[].ataDevices[].schedules",
2455
+ "type": "tabarray",
2456
+ "title": "{{ value.name || 'Schedule' }}",
2403
2457
  "items": [
2404
2458
  {
2405
- "key": "accounts[].ataDevices[].presets",
2406
- "type": "tabarray",
2407
- "title": "{{ value.name || 'Preset' }}",
2408
- "items": [
2409
- {
2410
- "key": "accounts[].ataDevices[].presets[].id",
2411
- "readonly": true
2412
- },
2413
- "accounts[].ataDevices[].presets[].displayType",
2414
- "accounts[].ataDevices[].presets[].name",
2415
- "accounts[].ataDevices[].presets[].namePrefix"
2416
- ]
2417
- }
2418
- ],
2419
- "condition": {
2420
- "functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloud';"
2421
- }
2422
- },
2459
+ "key": "accounts[].ataDevices[].schedules[].id",
2460
+ "readonly": true
2461
+ },
2462
+ "accounts[].ataDevices[].schedules[].displayType",
2463
+ "accounts[].ataDevices[].schedules[].name",
2464
+ "accounts[].ataDevices[].schedules[].namePrefix"
2465
+ ]
2466
+ }
2467
+ ],
2468
+ "condition": {
2469
+ "functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloudhome';"
2470
+ }
2471
+ },
2472
+ {
2473
+ "title": "Monitoring And Control",
2474
+ "type": "section",
2475
+ "description": "Section for setup additional monitoring and control functions.",
2476
+ "expandable": true,
2477
+ "expanded": false,
2478
+ "items": [
2423
2479
  {
2424
- "title": "Scenes",
2425
- "type": "section",
2426
- "description": "Section for setup device scenes",
2427
- "expandable": true,
2428
- "expanded": false,
2480
+ "key": "accounts[].ataDevices[]",
2481
+ "type": "tabarray",
2482
+ "title": "{{ value.title }}",
2429
2483
  "items": [
2430
2484
  {
2431
- "key": "accounts[].ataDevices[].scenes",
2432
- "type": "tabarray",
2433
- "title": "{{ value.name || 'Scene' }}",
2485
+ "title": "Sensors",
2434
2486
  "items": [
2435
- {
2436
- "key": "accounts[].ataDevices[].scenes[].id",
2437
- "readonly": true
2438
- },
2439
- "accounts[].ataDevices[].scenes[].displayType",
2440
- "accounts[].ataDevices[].scenes[].name",
2441
- "accounts[].ataDevices[].scenes[].namePrefix"
2487
+ "accounts[].ataDevices[].temperatureSensor",
2488
+ "accounts[].ataDevices[].temperatureOutdoorSensor",
2489
+ "accounts[].ataDevices[].inStandbySensor",
2490
+ "accounts[].ataDevices[].connectSensor",
2491
+ "accounts[].ataDevices[].errorSensor"
2442
2492
  ]
2443
- }
2444
- ],
2445
- "condition": {
2446
- "functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloudhome';"
2447
- }
2448
- },
2449
- {
2450
- "title": "Schedules",
2451
- "type": "section",
2452
- "description": "Section for setup device schedules",
2453
- "expandable": true,
2454
- "expanded": false,
2455
- "items": [
2493
+ },
2456
2494
  {
2457
- "key": "accounts[].ataDevices[].schedules",
2458
- "type": "tabarray",
2459
- "title": "{{ value.name || 'Schedule' }}",
2495
+ "title": "Functions",
2460
2496
  "items": [
2461
- {
2462
- "key": "accounts[].ataDevices[].schedules[].id",
2463
- "readonly": true
2464
- },
2465
- "accounts[].ataDevices[].schedules[].displayType",
2466
- "accounts[].ataDevices[].schedules[].name",
2467
- "accounts[].ataDevices[].schedules[].namePrefix"
2497
+ "accounts[].ataDevices[].frostProtectionSupport",
2498
+ "accounts[].ataDevices[].overheatProtectionSupport",
2499
+ "accounts[].ataDevices[].holidayModeSupport"
2468
2500
  ]
2469
- }
2470
- ],
2471
- "condition": {
2472
- "functionBody": "return model.accounts[arrayIndices[0]].type === 'melcloudhome';"
2473
- }
2474
- },
2475
- {
2476
- "title": "Monitoring And Control",
2477
- "type": "section",
2478
- "description": "Section for setup additional monitoring and control functions.",
2479
- "expandable": true,
2480
- "expanded": false,
2481
- "items": [
2501
+ },
2482
2502
  {
2483
- "key": "accounts[].ataDevices[]",
2484
- "type": "tabarray",
2485
- "title": "{{ value.title }}",
2503
+ "title": "Custom Functions",
2486
2504
  "items": [
2487
2505
  {
2488
- "title": "Sensors",
2489
- "items": [
2490
- "accounts[].ataDevices[].temperatureSensor",
2491
- "accounts[].ataDevices[].temperatureOutdoorSensor",
2492
- "accounts[].ataDevices[].inStandbySensor",
2493
- "accounts[].ataDevices[].connectSensor",
2494
- "accounts[].ataDevices[].errorSensor"
2495
- ]
2496
- },
2497
- {
2498
- "title": "Functions",
2506
+ "key": "accounts[].ataDevices[].buttonsSensors",
2507
+ "type": "tabarray",
2508
+ "title": "{{ value.name || 'Function' }}",
2499
2509
  "items": [
2500
- "accounts[].ataDevices[].frostProtectionSupport",
2501
- "accounts[].ataDevices[].overheatProtectionSupport",
2502
- "accounts[].ataDevices[].holidayModeSupport"
2503
- ]
2504
- },
2505
- {
2506
- "title": "Custom Functions",
2507
- "items": [
2508
- {
2509
- "key": "accounts[].ataDevices[].buttonsSensors",
2510
- "type": "tabarray",
2511
- "title": "{{ value.name || 'Function' }}",
2512
- "items": [
2513
- "accounts[].ataDevices[].buttonsSensors[].displayType",
2514
- "accounts[].ataDevices[].buttonsSensors[].mode",
2515
- "accounts[].ataDevices[].buttonsSensors[].name",
2516
- "accounts[].ataDevices[].buttonsSensors[].namePrefix"
2517
- ]
2518
- }
2510
+ "accounts[].ataDevices[].buttonsSensors[].displayType",
2511
+ "accounts[].ataDevices[].buttonsSensors[].mode",
2512
+ "accounts[].ataDevices[].buttonsSensors[].name",
2513
+ "accounts[].ataDevices[].buttonsSensors[].namePrefix"
2519
2514
  ]
2520
2515
  }
2521
2516
  ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "MELCloud Control",
3
3
  "name": "homebridge-melcloud-control",
4
- "version": "4.6.1-beta.7",
4
+ "version": "4.6.1-beta.9",
5
5
  "description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",