homebridge-virtual-accessories 3.14.5 → 3.14.6

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/README.md CHANGED
@@ -547,11 +547,9 @@ These are example configurations of the virtual accessories and provided for ref
547
547
  "accessoryName": "My Security System",
548
548
  "accessoryType": "securitysystem",
549
549
  "securitySystem": {
550
- "armedModes": [
551
- "Away",
552
- "Night"
553
- ],
554
- "defaultState": "disarmed"
550
+ "hasNightMode": false,
551
+ "defaultState": "disarmed",
552
+ "awayArmingDelay": 60
555
553
  }
556
554
  }
557
555
  ],
@@ -672,27 +672,24 @@
672
672
  "title": "Security System",
673
673
  "type": "object",
674
674
  "properties": {
675
- "": {
675
+ "armedModesTitle": {
676
676
  "title": "Armed Modes",
677
- "description": "Security system modes (Away and Home are required)",
677
+ "description": "Security system modes (Away and Home modes are required)",
678
678
  "type": "object",
679
679
  "properties": {}
680
680
  },
681
681
  "hasAwayMode": {
682
- "title": "Away Mode",
683
- "type": "boolean",
684
- "disabled": true,
685
- "default": true
682
+ "title": "Away Mode",
683
+ "type": "object",
684
+ "properties": {}
686
685
  },
687
686
  "hasHomeMode": {
688
- "title": "Home Mode",
689
- "type": "boolean",
690
- "disabled": true,
691
- "default": true
687
+ "title": "Home Mode",
688
+ "type": "object",
689
+ "properties": {}
692
690
  },
693
691
  "hasNightMode": {
694
692
  "title": "Night Mode",
695
- "description": "Night mode is a custom armed mode",
696
693
  "type": "boolean"
697
694
  },
698
695
  "defaultState": {
@@ -707,7 +704,7 @@
707
704
  },
708
705
  "awayArmingDelay": {
709
706
  "title": "Away Arming Delay",
710
- "description": "Security System away arming delay in seconds (default 0 = immediate)",
707
+ "description": "Away Mode arming delay in seconds (default 0 = immediate)",
711
708
  "type": "integer",
712
709
  "minimum": 0,
713
710
  "maximum": 60
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "homebridge-virtual-accessories",
3
3
  "displayName": "Virtual Accessories for Homebridge",
4
4
  "type": "module",
5
- "version": "3.14.5",
5
+ "version": "3.14.6",
6
6
  "description": "Virtual HomeKit accessories for Homebridge.",
7
7
  "author": "justjam2013",
8
8
  "license": "MIT",