fix: Display patches using new patches JSON format

This commit is contained in:
oSumAtrIX
2023-10-05 04:55:47 +02:00
parent e290b7c4fd
commit 3c6b6d23f5
4 changed files with 28 additions and 26 deletions

View File

@@ -12,11 +12,10 @@ export interface Repository {
export interface Patch {
name: string;
description: string;
version: string;
excluded: boolean;
dependencies: string[];
options: PatchOption[];
compatiblePackages: CompatiblePackage[];
use: boolean;
requiresIntegrations: boolean;
options: PatchOption[];
}
export interface CompatiblePackage {
@@ -26,10 +25,10 @@ export interface CompatiblePackage {
export interface PatchOption {
key: string;
default: any;
title: string;
description: string;
required: boolean;
choices: string[];
}
export interface Asset {