(
commandType: string,
data?: Record<string, unknown>,
)
| 350 | } |
| 351 | |
| 352 | async sendCommandToSecurityPanel( |
| 353 | commandType: string, |
| 354 | data?: Record<string, unknown>, |
| 355 | ) { |
| 356 | const securityPanel = await this.getSecurityPanel() |
| 357 | securityPanel.sendCommand(commandType, data) |
| 358 | } |
| 359 | |
| 360 | async setAlarmMode(alarmMode: AlarmMode, bypassSensorZids?: string[]) { |
| 361 | const securityPanel = await this.getSecurityPanel(), |
no test coverage detected