ui: completes welcome ack trigger

This commit is contained in:
Aaron Greenspan
2021-01-14 14:55:08 -07:00
committed by Aiden McClelland
parent 778d22ab2b
commit 939ad844e8
6 changed files with 29 additions and 6 deletions

View File

@@ -29,6 +29,7 @@ export abstract class ApiService {
abstract getNotifications (page: number, perPage: number): Promise<S9Notification[]>
abstract deleteNotification (id: string): Promise<Unit>
abstract updateAgent (thing: any): Promise<Unit>
abstract acknowledgeOSWelcome (): Promise<Unit>
abstract getAvailableApps (): Promise<AppAvailablePreview[]>
abstract getAvailableApp (appId: string): Promise<AppAvailableFull>
abstract getAvailableAppVersionSpecificInfo (appId: string, versionSpec: string): Promise<AppAvailableVersionSpecificInfo>