(message: any)
| 119 | } |
| 120 | |
| 121 | private sendMessage(message: any): Promise<Record<string, any>> { |
| 122 | return this.transport.send({ |
| 123 | message, |
| 124 | encryptionKey: this.encryptionKeys.sharedKey, |
| 125 | }); |
| 126 | } |
| 127 | |
| 128 | async fetchDeviceInfo() { |
| 129 | deviceLogger.info(`Fetching device information for ${this.id}`); |
no test coverage detected