Skip to content

Type Alias: SupervisorRuntimeSnapshot

Makaio Framework


Makaio Framework / contracts / SupervisorRuntimeSnapshot

SupervisorRuntimeSnapshot = z.infer<typeof SupervisorRuntimeSnapshotSchema>

Defined in: ../../../packages/contracts/src/native-session-supervisor/schemas.ts:226

type SupervisorRuntimeSnapshot = {
supervisorSessionId: string;
clientId: string;
pid: number | null;
status: 'unknown' | 'running' | 'stopped' | 'exited';
cwd: string;
startedAt: number;
sessionId?: string | undefined;
adapterSessionId?: string | undefined;
stoppedAt?: number | undefined;
};