feat: plugins v1.7

This commit is contained in:
2026-04-29 15:24:56 +02:00
parent eabbc08896
commit d261bac0ed
45 changed files with 5621 additions and 867 deletions

View File

@@ -5,6 +5,7 @@ export type PluginStoreActionLabel = 'Install' | 'Install to Server' | 'Remove f
export interface PluginStoreEntry {
author?: string;
bundleUrl?: string;
description: string;
githubUrl?: string;
homepageUrl?: string;
@@ -28,6 +29,9 @@ export interface PluginStoreSourceResult {
}
export interface InstalledStorePlugin {
bundleUrl?: string;
cachedAt?: number;
cachedSourcePath?: string;
installedAt: number;
installUrl?: string;
manifest: TojuPluginManifest;