summaryrefslogtreecommitdiff
path: root/src/api/lsfgApi.ts
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-08-01 16:12:05 -0400
committerGitHub <noreply@github.com>2026-08-01 16:12:05 -0400
commite61d376237b56eee9383240bccd2dcbbd3a095a5 (patch)
tree503c3d011dd8cf2cc2dbea73c38d03f840e8ccb8 /src/api/lsfgApi.ts
parenteb51ec80231cf13accf8af156fa7a4283e2a2f88 (diff)
parent0b0a92b5568d474401bf3be50399b5e22284214b (diff)
downloaddecky-lsfg-vk-e61d376237b56eee9383240bccd2dcbbd3a095a5.tar.gz
decky-lsfg-vk-e61d376237b56eee9383240bccd2dcbbd3a095a5.zip
Merge pull request #245 from xXJSONDeruloXx/bundle-v2-flatpak-auto-updatefeat/lsfg-v2-release
Diffstat (limited to 'src/api/lsfgApi.ts')
-rw-r--r--src/api/lsfgApi.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/api/lsfgApi.ts b/src/api/lsfgApi.ts
index 8378a7f..f112d39 100644
--- a/src/api/lsfgApi.ts
+++ b/src/api/lsfgApi.ts
@@ -7,6 +7,18 @@ export interface InstallationResult {
error?: string;
message?: string;
removed_files?: string[];
+ flatpak_update?: FlatpakMigrationResult;
+}
+
+export interface FlatpakMigrationResult {
+ success: boolean;
+ message: string;
+ error?: string;
+ skipped?: boolean;
+ updated_versions: string[];
+ failed_versions: Array<{ version: string; error: string }>;
+ migrated_apps: string[];
+ failed_apps: Array<{ app_id: string; error: string }>;
}
export interface InstallationStatus {