Skip to content

Commit

Permalink
Bug Fix (#21)
Browse files Browse the repository at this point in the history
* fix for config.schema.json

* Update package.json

* Update package.json

* Update package-lock.json

* Update CHANGELOG.md

* update package-lock.json
  • Loading branch information
donavanbecker authored Apr 13, 2020
1 parent 53b3d07 commit 05902fc
Show file tree
Hide file tree
Showing 4 changed files with 259 additions and 3,315 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/).

## 1.0.3 (2020-04-13)

## [Version 1.0.3](https://github.com/donavanbecker/homebridge-honeywell-home/compare/v1.0.2...1.0.3)

#### Changes

- fix config.schema.json
- update engine dependencies

## 1.0.2 (2020-04-11)

## [Version 1.0.2](https://github.com/donavanbecker/homebridge-honeywell-home/compare/v1.0.1...1.0.2)
Expand Down
83 changes: 45 additions & 38 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,51 @@
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Meross",
"required": true
},
"deviceUrl": {
"title": "Device IP Address",
"type": "string",
"required": true,
"format": "ipv4",
"required": true
},
"hardwareVersion": {
"title": "Hardware Version",
"type": "integer",
"required": true
},
"channel": {
"title": "Device Channel",
"type": "integer",
"required": true
},
"messageId": {
"title": "MessageID",
"type": "string",
"required": true
},
"timestamp": {
"title": "TimeStamp",
"type": "integer",
"required": true
},
"sign": {
"title": "Sign",
"type": "string",
"required": true
"accessories": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Meross",
"required": true
},
"deviceUrl": {
"title": "Device IP Address",
"type": "string",
"required": true,
"format": "ipv4"
},
"hardwareVersion": {
"title": "Hardware Version",
"type": "integer",
"required": true
},
"channel": {
"title": "Device Channel",
"type": "integer",
"required": true
},
"messageId": {
"title": "MessageID",
"type": "string",
"required": true
},
"timestamp": {
"title": "TimeStamp",
"type": "integer",
"required": true
},
"sign": {
"title": "Sign",
"type": "string",
"required": true
}
}
}
}
}
}
}
}
Loading

0 comments on commit 05902fc

Please sign in to comment.