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
+2
View File
@@ -438,6 +438,7 @@ export interface ServerInstanceResponse {
id: string;
pluginId: string;
pluginVersion: string;
deploymentTargetId?: string;
runEndpointId: string;
name: string;
ownerUserId?: string;
@@ -484,6 +485,7 @@ export interface ServerInstanceListResponse {
export interface ServerLifecycleCreateRequest {
id: string;
pluginId: string;
deploymentTargetId?: string;
runEndpointId?: string;
name: string;
idempotencyKey: string;