File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -101,3 +101,7 @@ Base schema.
101
101
# Schema 43
102
102
103
103
- Added ` controller.toggle_rf ` command
104
+
105
+ # Schema 44
106
+
107
+ - Added another overload to the ` driver.firmware_update_otw ` command
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export const version = require("../../package.json").version;
6
6
export const minSchemaVersion = 0 ;
7
7
8
8
// maximal/current schema version the server supports
9
- export const maxSchemaVersion = 43 ;
9
+ export const maxSchemaVersion = 44 ;
10
10
11
11
export const applicationName = "zwave-js-server" ;
12
12
export const dnssdServiceType = applicationName ;
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ export type IncomingCommandFirmwareUpdateOTW = IncomingCommandBase & {
100
100
}
101
101
| {
102
102
// Or as the update info received from the Z-Wave JS update service
103
+ // (only schema version >= 44)
103
104
updateInfo : FirmwareUpdateInfo ;
104
105
}
105
106
) ;
You can’t perform that action at this time.
0 commit comments