chore: update env vars from backend version

This commit is contained in:
jialin
2026-01-30 20:48:55 +08:00
committed by Lawrence Li
parent 4000aacb2c
commit 4a4a02eb0d
18 changed files with 240 additions and 116 deletions
+3
View File
@@ -316,6 +316,7 @@ export interface BackendGroupItem {
label: string;
value: string;
title?: string;
environment?: Record<string, any>;
is_deprecated: boolean;
}[];
}
@@ -333,6 +334,7 @@ export interface BackendOption {
label: string;
value: string;
title?: string;
environment?: Record<string, any>;
is_deprecated: boolean;
}[];
}
@@ -352,6 +354,7 @@ export interface BackendItem {
enabled: boolean;
versions: {
version: string;
environment?: Record<string, any>;
is_deprecated: boolean;
}[];
}