Skip to content

Type Alias: ContainerIsolatedSpawnRequest

Makaio Framework


Makaio Framework / services-core / ContainerIsolatedSpawnRequest

ContainerIsolatedSpawnRequest = z.infer<typeof ContainerIsolatedSpawnRequestSchema>

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

type ContainerIsolatedSpawnRequest = {
sessionId: string;
adapter: string;
runtime: 'full' | 'simple';
mode: 'container-isolated';
repoUrl: string;
branch: string;
gitToken: string;
busMode: 'relay' | 'host';
image?: string | undefined;
env?: Record<string, string> | undefined;
relayUrl?: string | undefined;
};