fix: write agent version into the log when upgrade firmware (#802)

This commit is contained in:
Róbert Kiss
2018-09-30 22:48:42 +02:00
committed by László Monda
parent 8afdeac306
commit edcff069fd
6 changed files with 34 additions and 18 deletions
+1
View File
@@ -8,3 +8,4 @@ export * from './device-connection-state';
export * from './hardware-modules';
export * from './hardware-module-info';
export * from './save-user-configuration-data';
export * from './update-firmware-data';
@@ -0,0 +1,6 @@
import { VersionInformation } from './version-information';
export interface UpdateFirmwareData {
versionInformation: VersionInformation;
firmware?: Array<number>;
}