Skip to content

Type Alias: ContainerLocalSpawnRequest

Makaio Framework


Makaio Framework / services-core / ContainerLocalSpawnRequest

ContainerLocalSpawnRequest = z.infer<typeof ContainerLocalSpawnRequestSchema>

Defined in: ../../../packages/services/core/src/execution-target/container-schemas.ts:40

type ContainerLocalSpawnRequest = {
sessionId: string;
adapter: string;
runtime: 'full' | 'simple';
mode: 'container-local';
repoPath: string;
baseBranch: string;
image?: string | undefined;
env?: Record<string, string> | undefined;
worktreeBranch?: string | undefined;
};