auto check for update on init

This commit is contained in:
Matt Hill
2021-01-15 16:35:39 -07:00
committed by Aiden McClelland
parent 792a5cc429
commit 0c7eae7333
6 changed files with 109 additions and 23 deletions

View File

@@ -28,7 +28,7 @@ export abstract class ApiService {
abstract getServerMetrics (): Promise<ReqRes.GetServerMetricsRes>
abstract getNotifications (page: number, perPage: number): Promise<S9Notification[]>
abstract deleteNotification (id: string): Promise<Unit>
abstract updateAgent (thing: any): Promise<Unit>
abstract updateAgent (version: any): Promise<Unit>
abstract acknowledgeOSWelcome (version: string): Promise<Unit>
abstract getAvailableApps (): Promise<AppAvailablePreview[]>
abstract getAvailableApp (appId: string): Promise<AppAvailableFull>