From 21282baed130426febab2264efa7275ceec9bb59 Mon Sep 17 00:00:00 2001 From: Jerod Fritz Date: Sat, 27 Dec 2025 21:40:14 -0500 Subject: [PATCH] move updatedScriptAvailable to AppInfoDetailed from AppInfo --- eshtek/apps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eshtek/apps.ts b/eshtek/apps.ts index 87ab391..ee3d768 100644 --- a/eshtek/apps.ts +++ b/eshtek/apps.ts @@ -89,11 +89,11 @@ export interface AppInfo extends AppBasics { status: AppState; url_webui: string; upgradeAvailable: boolean; - updatedScriptAvailable: boolean; latestVersion: string; recommended: boolean; } export interface AppInfoDetailed extends AppInfo { + updatedScriptAvailable: boolean; data: number[][]; }