export type ExecutionWorkspaceStrategyType = "project_primary" | "git_worktree" | "adapter_managed" | "cloud_sandbox"; export type ProjectExecutionWorkspaceDefaultMode = "shared_workspace" | "isolated_workspace" | "operator_branch" | "adapter_default"; export type ExecutionWorkspaceMode = "inherit" | "shared_workspace" | "isolated_workspace" | "operator_branch" | "reuse_existing" | "agent_default"; export type ExecutionWorkspaceProviderType = "local_fs" | "git_worktree" | "adapter_managed" | "cloud_sandbox"; export type ExecutionWorkspaceStatus = "active" | "idle" | "in_review" | "archived" | "cleanup_failed"; export interface ExecutionWorkspaceStrategy { type: ExecutionWorkspaceStrategyType; baseRef?: string | null; branchTemplate?: string | null; worktreeParentDir?: string | null; provisionCommand?: string | null; teardownCommand?: string | null; } export interface ProjectExecutionWorkspacePolicy { enabled: boolean; defaultMode?: ProjectExecutionWorkspaceDefaultMode; allowIssueOverride?: boolean; defaultProjectWorkspaceId?: string | null; workspaceStrategy?: ExecutionWorkspaceStrategy | null; workspaceRuntime?: Record | null; branchPolicy?: Record | null; pullRequestPolicy?: Record | null; runtimePolicy?: Record | null; cleanupPolicy?: Record | null; } export interface IssueExecutionWorkspaceSettings { mode?: ExecutionWorkspaceMode; workspaceStrategy?: ExecutionWorkspaceStrategy | null; workspaceRuntime?: Record | null; } export interface ExecutionWorkspace { id: string; companyId: string; projectId: string; projectWorkspaceId: string | null; sourceIssueId: string | null; mode: Exclude | "adapter_managed" | "cloud_sandbox"; strategyType: ExecutionWorkspaceStrategyType; name: string; status: ExecutionWorkspaceStatus; cwd: string | null; repoUrl: string | null; baseRef: string | null; branchName: string | null; providerType: ExecutionWorkspaceProviderType; providerRef: string | null; derivedFromExecutionWorkspaceId: string | null; lastUsedAt: Date; openedAt: Date; closedAt: Date | null; cleanupEligibleAt: Date | null; cleanupReason: string | null; metadata: Record | null; createdAt: Date; updatedAt: Date; } export interface WorkspaceRuntimeService { id: string; companyId: string; projectId: string | null; projectWorkspaceId: string | null; executionWorkspaceId: string | null; issueId: string | null; scopeType: "project_workspace" | "execution_workspace" | "run" | "agent"; scopeId: string | null; serviceName: string; status: "starting" | "running" | "stopped" | "failed"; lifecycle: "shared" | "ephemeral"; reuseKey: string | null; command: string | null; cwd: string | null; port: number | null; url: string | null; provider: "local_process" | "adapter_managed"; providerRef: string | null; ownerAgentId: string | null; startedByRunId: string | null; lastUsedAt: Date; startedAt: Date; stoppedAt: Date | null; stopPolicy: Record | null; healthStatus: "unknown" | "healthy" | "unhealthy"; createdAt: Date; updatedAt: Date; } //# sourceMappingURL=workspace-runtime.d.ts.map