fix: custom backend and versions ux

This commit is contained in:
jialin
2025-11-04 13:37:53 +08:00
parent 9be465a8cf
commit 23b7936924
19 changed files with 247 additions and 104 deletions
+8 -2
View File
@@ -288,13 +288,19 @@ export interface EvaluateResult {
};
}
export interface BackendOption {
export interface BackendGroupOption {
value: string;
label: string;
title?: string;
default_backend_param: string[];
default_version: string;
isBuiltIn: boolean;
versions: { label: string; value: string }[];
versions: { label: string; value: string; title?: string }[];
}
export interface BackendOption {
label: string;
options: BackendGroupOption[];
}
export interface AccessControlFormData {