separate server run bindings from deployment targets

This commit is contained in:
npc0-hue
2026-07-25 19:48:26 +08:00
parent cea7472517
commit e5c94be1db
28 changed files with 465 additions and 104 deletions
+5 -3
View File
@@ -14,8 +14,9 @@ export type ServerRemovalAction = "delete";
export interface ServerCreateFormState {
id: string;
name: string;
pluginId: string;
runEndpointId: string;
pluginId: string;
deploymentTargetId: string;
runEndpointId: string;
profileKey: string;
bindings: Record<string, string>;
createInputs: Record<string, string>;
@@ -63,7 +64,8 @@ export interface ServerManagementSummary {
export const emptyServerCreateForm: ServerCreateFormState = {
id: "",
name: "",
pluginId: "",
pluginId: "",
deploymentTargetId: "",
runEndpointId: "",
profileKey: "",
bindings: {},