@kohost/api-client 3.3.15 → 3.3.16
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/dist/cjs/schemas/alarm.json +4 -0
- package/dist/esm/Models.js +4 -0
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +4 -0
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/AlarmSchema.d.ts +4 -0
- package/dist/types/schemas/RoomSchema.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1306,6 +1306,10 @@ export interface Alarm {
|
|
|
1306
1306
|
secure?: boolean | null;
|
|
1307
1307
|
bypassed?: boolean | null;
|
|
1308
1308
|
}[];
|
|
1309
|
+
/**
|
|
1310
|
+
* Reflects whether console chime is enabled
|
|
1311
|
+
*/
|
|
1312
|
+
chime?: boolean;
|
|
1309
1313
|
watts?: number;
|
|
1310
1314
|
address?: Address;
|
|
1311
1315
|
[k: string]: unknown;
|