feat: plugins v1.5

This commit is contained in:
2026-04-29 01:14:30 +02:00
parent 6920f93b41
commit eabbc08896
59 changed files with 2197 additions and 352 deletions

View File

@@ -1,6 +1,7 @@
import type { TojuPluginManifest } from '../../../../shared-kernel';
import type { TojuPluginInstallScope, TojuPluginManifest } from '../../../../shared-kernel';
export type PluginStoreInstallState = 'installed' | 'notInstalled' | 'updateAvailable';
export type PluginStoreActionLabel = 'Install' | 'Install to Server' | 'Remove from Server' | 'Uninstall' | 'Update' | 'Update Server';
export interface PluginStoreEntry {
author?: string;
@@ -11,6 +12,7 @@ export interface PluginStoreEntry {
imageUrl?: string;
installUrl?: string;
readmeUrl?: string;
scope?: TojuPluginInstallScope;
sourceTitle?: string;
sourceUrl: string;
title: string;