Skip to content

Commit d51ca83

Browse files
authored
Bump schema to 44 (#1434)
1 parent dd17162 commit d51ca83

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

API_SCHEMA.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,7 @@ Base schema.
101101
# Schema 43
102102

103103
- Added `controller.toggle_rf` command
104+
105+
# Schema 44
106+
107+
- Added another overload to the `driver.firmware_update_otw` command

src/lib/const.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const version = require("../../package.json").version;
66
export const minSchemaVersion = 0;
77

88
// maximal/current schema version the server supports
9-
export const maxSchemaVersion = 43;
9+
export const maxSchemaVersion = 44;
1010

1111
export const applicationName = "zwave-js-server";
1212
export const dnssdServiceType = applicationName;

src/lib/driver/incoming_message.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export type IncomingCommandFirmwareUpdateOTW = IncomingCommandBase & {
100100
}
101101
| {
102102
// Or as the update info received from the Z-Wave JS update service
103+
// (only schema version >= 44)
103104
updateInfo: FirmwareUpdateInfo;
104105
}
105106
);

0 commit comments

Comments
 (0)